summaryrefslogtreecommitdiff
path: root/gdb/objfiles.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-09-02 03:05:46 +0000
committerAndrew Cagney <cagney@redhat.com>2004-09-02 03:05:46 +0000
commitd8def0fab2fa51d35d3d90ee1ecacc7731e6d8a6 (patch)
treeb9a91d011ccf9acd5bb62d9a0072070fc71cc7b1 /gdb/objfiles.c
parentb6388f1e3bc0c7151e9683b1c1b348013c29ea5b (diff)
downloadgdb-d8def0fab2fa51d35d3d90ee1ecacc7731e6d8a6.tar.gz
2004-09-01 Andrew Cagney <cagney@gnu.org>
* objfiles.h (struct entry_info): Delete fields main_func_lowpc and main_func_highpc. (INVALID_ENTRY_LOWPC, INVALID_ENTRY_HIGHPC): Delete macros. * objfiles.c (init_entry_point_info, objfile_relocate): Update * nlmread.c (nlm_symfile_read): Update.
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r--gdb/objfiles.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c
index cc6a1e1c714..69f61d48688 100644
--- a/gdb/objfiles.c
+++ b/gdb/objfiles.c
@@ -250,8 +250,6 @@ init_entry_point_info (struct objfile *objfile)
/* Examination of non-executable.o files. Short-circuit this stuff. */
objfile->ei.entry_point = INVALID_ENTRY_POINT;
}
- objfile->ei.main_func_lowpc = INVALID_ENTRY_LOWPC;
- objfile->ei.main_func_highpc = INVALID_ENTRY_HIGHPC;
}
/* Get current entry point address. */
@@ -647,12 +645,6 @@ objfile_relocate (struct objfile *objfile, struct section_offsets *new_offsets)
}
}
- if (objfile->ei.main_func_lowpc != INVALID_ENTRY_LOWPC)
- {
- objfile->ei.main_func_lowpc += ANOFFSET (delta, SECT_OFF_TEXT (objfile));
- objfile->ei.main_func_highpc += ANOFFSET (delta, SECT_OFF_TEXT (objfile));
- }
-
/* Relocate breakpoints as necessary, after things are relocated. */
breakpoint_re_set ();
}