diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-05-07 14:29:34 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-05-07 14:29:34 +0000 |
commit | 253270e09cc521abaa03fc65fbdf5c5294ae5743 (patch) | |
tree | cbee22bb056390f2b2c4a2d37981a3da6940cd37 /gdb/mdebugread.c | |
parent | 37619838110f0c05a14f55ca930356d16ad83c78 (diff) | |
download | gdb-253270e09cc521abaa03fc65fbdf5c5294ae5743.tar.gz |
2004-05-07 Andrew Cagney <cagney@redhat.com>
* objfiles.h (struct entry_info): Delete unused fields
deprecated_entry_file_lowpc and deprecated_entry_file_highpc.
* objfiles.c (init_entry_point_info, objfile_relocate): Update.
* mipsread.c (mipscoff_symfile_read): Update.
* mdebugread.c (parse_partial_symbols): Update.
* dwarfread.c (read_file_scope): Update.
* dwarf2read.c (read_file_scope): Update.
* dbxread.c (read_dbx_symtab, read_dbx_symtab): Update.
* coffread.c (complete_symtab): Update.
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r-- | gdb/mdebugread.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index f00cce42253..c0165aba536 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -3601,13 +3601,6 @@ parse_partial_symbols (struct objfile *objfile) includes_used = 0; dependencies_used = 0; - if (objfile->ei.entry_point >= save_pst->textlow && - objfile->ei.entry_point < save_pst->texthigh) - { - objfile->ei.deprecated_entry_file_lowpc = save_pst->textlow; - objfile->ei.deprecated_entry_file_highpc = save_pst->texthigh; - } - /* The objfile has its functions reordered if this partial symbol table overlaps any other partial symbol table. We cannot assume a reordered objfile if a partial symbol table |