summaryrefslogtreecommitdiff
path: root/gdb/objfiles.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-10-31 17:48:17 +0000
committerAndrew Cagney <cagney@redhat.com>2004-10-31 17:48:17 +0000
commit6961cfcbf8c276eb97eefb729f1ab748bdccb396 (patch)
tree70bf7a7bc14e1495f3b00f5d76d68a8be671c726 /gdb/objfiles.c
parent8ca9c7299bd2da06ee195882fc138b016fbbe92e (diff)
downloadgdb-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.c10
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
}
}
}