diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-01-15 20:00:17 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-01-15 20:00:17 +0000 |
commit | 26b0da329fcf5e3fdb36722c670d2a23c91975f4 (patch) | |
tree | 41077bacffc5eb5aa3f3541c881113c315e8e8fa /gdb/blockframe.c | |
parent | 091c48f61aca2db9a3f96346e3d90eb282cd6a7c (diff) | |
download | gdb-26b0da329fcf5e3fdb36722c670d2a23c91975f4.zip gdb-26b0da329fcf5e3fdb36722c670d2a23c91975f4.tar.gz gdb-26b0da329fcf5e3fdb36722c670d2a23c91975f4.tar.bz2 |
* blockframe.c: Update copyright year.
(inside_entry_func): Don't treat a zero PC specially.
Diffstat (limited to 'gdb/blockframe.c')
-rw-r--r-- | gdb/blockframe.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gdb/blockframe.c b/gdb/blockframe.c index 83bc691..4a7a380 100644 --- a/gdb/blockframe.c +++ b/gdb/blockframe.c @@ -2,8 +2,8 @@ functions and pc values. Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, - 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software - Foundation, Inc. + 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 + Free Software Foundation, Inc. This file is part of GDB. @@ -157,15 +157,11 @@ inside_main_func (CORE_ADDR pc) } /* Test whether PC is inside the range of addresses that corresponds - to the process entry point function. - - A PC of zero is always considered to be the bottom of the stack. */ + to the process entry point function. */ int inside_entry_func (CORE_ADDR pc) { - if (pc == 0) - return 1; if (symfile_objfile == 0) return 0; |