aboutsummaryrefslogtreecommitdiff
path: root/gdb/objfiles.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-06-24 20:42:42 +0000
committerAndrew Cagney <cagney@redhat.com>2004-06-24 20:42:42 +0000
commiteedc19af0387f745b1eabf5d0dc38eee8edc5d19 (patch)
treeed2aa474026543734f2896d2a204f957cbbf1122 /gdb/objfiles.h
parentd47079be51771f29a4815f46d9a8a3f76ee049f9 (diff)
downloadgdb-eedc19af0387f745b1eabf5d0dc38eee8edc5d19.zip
gdb-eedc19af0387f745b1eabf5d0dc38eee8edc5d19.tar.gz
gdb-eedc19af0387f745b1eabf5d0dc38eee8edc5d19.tar.bz2
2004-06-24 Andrew Cagney <cagney@gnu.org>
* objfiles.h (struct entry_info): Delete entry_func_lowpc and entry_func_highpc fields. * objfiles.c (init_entry_point_info): Do not clear entry_func_lowpc and entry_func_highpc. (objfile_relocate): Do not relocate entry_func_lowpc and entry_func_highpc. * dwarfread.c (read_func_scope): Do not set entry_func_lowpc and entry_func_highpc. * dwarf2read.c (read_func_scope): Do not set entry_func_lowpc and entry_func_highpc. * blockframe.c (legacy_frame_chain_valid): Replace tests against entry_func_lowpc and entry_func_highpc with call to inside_entry_func.
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r--gdb/objfiles.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h
index c2a6a01..29be972 100644
--- a/gdb/objfiles.h
+++ b/gdb/objfiles.h
@@ -110,12 +110,6 @@ struct entry_info
#define INVALID_ENTRY_POINT (~0) /* ~0 will not be in any file, we hope. */
- /* Start (inclusive) and end (exclusive) of function containing the
- entry point. */
-
- CORE_ADDR entry_func_lowpc;
- CORE_ADDR entry_func_highpc;
-
/* Start (inclusive) and end (exclusive) of the user code main() function. */
CORE_ADDR main_func_lowpc;