diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-10-31 17:48:17 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-10-31 17:48:17 +0000 |
commit | 6961cfcbf8c276eb97eefb729f1ab748bdccb396 (patch) | |
tree | 70bf7a7bc14e1495f3b00f5d76d68a8be671c726 /gdb/objfiles.c | |
parent | 8ca9c7299bd2da06ee195882fc138b016fbbe92e (diff) | |
download | gdb-6961cfcbf8c276eb97eefb729f1ab748bdccb396.tar.gz |
2004-10-31 Andrew Cagney <cagney@gnu.org>
* mdebugread.h (ecoff_relocate_efi): Delete declaration.
* mdebugread.c (ecoff_relocate_efi): Delete function.
* objfiles.c (objfile_relocate): Delete #ifdef
MDEBUG_EFI_SYMBOL_NAME code.
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r-- | gdb/objfiles.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 9528d580d8a..dce6156fc2c 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -555,16 +555,6 @@ objfile_relocate (struct objfile *objfile, struct section_offsets *new_offsets) SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (delta, SYMBOL_SECTION (sym)); } -#ifdef MDEBUG_EFI_SYMBOL_NAME - /* Relocate Extra Function Info for ecoff. */ - - else if (SYMBOL_CLASS (sym) == LOC_CONST - && SYMBOL_DOMAIN (sym) == LABEL_DOMAIN - && strcmp (DEPRECATED_SYMBOL_NAME (sym), - MDEBUG_EFI_SYMBOL_NAME) == 0) - ecoff_relocate_efi (sym, ANOFFSET (delta, - s->block_line_section)); -#endif } } } |