From 7213b5e2e35454cf9eea0de3cb66e84a4a239676 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 28 Feb 2000 04:17:36 +0000 Subject: [PATCH] 2000-02-27 Thomas de Lellis * config/obj-elf.c (elf_frob_symbol): Remove code which when TC_PPC was defined forced the type of a symbol with no other type to be BSF_OBJECT. --- gas/ChangeLog | 6 ++++++ gas/config/obj-elf.c | 8 +++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index bc4e5e9022..7a30f28c11 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2000-02-27 Thomas de Lellis + + * config/obj-elf.c (elf_frob_symbol): Remove code which when + TC_PPC was defined forced the type of a symbol with no other type + to be BSF_OBJECT. + 2000-02-27 Hans-Peter Nilsson * doc/internals.texi (CPU backend): Mention that diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index f9e4406520..21fd0fa224 100644 --- a/gas/config/obj-elf.c +++ b/gas/config/obj-elf.c @@ -1693,9 +1693,11 @@ elf_frob_symbol (symp, puntp) symbol_get_bfdsym (symp)->flags |= BSF_OBJECT; #endif -#ifdef TC_PPC - /* Frob the PowerPC, so that the symbol always has object type - if it is not some other type. VxWorks needs this. */ +#if 0 /* TC_PPC */ + /* If TC_PPC is defined, we used to force the type of a symbol to be + BSF_OBJECT if it was otherwise unset. This was required by some + version of VxWorks. Thomas de Lellis says + that this is no longer needed, so it is now commented out. */ if ((symbol_get_bfdsym (symp)->flags & (BSF_FUNCTION | BSF_FILE | BSF_SECTION_SYM)) == 0 && S_IS_DEFINED (symp)) -- 2.11.0