aboutsummaryrefslogtreecommitdiff
path: root/gas/config/obj-elf.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2000-02-28 04:17:36 +0000
committerIan Lance Taylor <ian@airs.com>2000-02-28 04:17:36 +0000
commitc5e54cc20ecbc35f5145687bd3e93db2d86a6bcd (patch)
tree60094f16ff99d14e50863076134d5f1bbd051844 /gas/config/obj-elf.c
parent65fd87bce32b89893abdc4b5f3e3180d0df51a0b (diff)
downloadfsf-binutils-gdb-c5e54cc20ecbc35f5145687bd3e93db2d86a6bcd.zip
fsf-binutils-gdb-c5e54cc20ecbc35f5145687bd3e93db2d86a6bcd.tar.gz
fsf-binutils-gdb-c5e54cc20ecbc35f5145687bd3e93db2d86a6bcd.tar.bz2
2000-02-27 Thomas de Lellis <tdel@windriver.com>
* 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.
Diffstat (limited to 'gas/config/obj-elf.c')
-rw-r--r--gas/config/obj-elf.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c
index f9e4406..21fd0fa 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 <tdel@windriver.com> 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))