* som.c (som_decode_symclass): Recognize weak symbols.
authorCatherine Moore <clm@redhat.com>
Tue, 16 May 2000 14:20:10 +0000 (14:20 +0000)
committerCatherine Moore <clm@redhat.com>
Tue, 16 May 2000 14:20:10 +0000 (14:20 +0000)
bfd/ChangeLog
bfd/som.c

index 1a991f7132737e7ed928b3dd24cb115df6a740ac..5dbe6a20b215c5bb5ff80b0c8188781a64a20b6b 100644 (file)
@@ -1,3 +1,7 @@
+2000-05-16  Catherine Moore  <clm@cygnux.com>
+
+       * som.c (som_decode_symclass):  Recognize weak symbols.
+
 2000-05-16  Szabolcs Szakacsits <szaka@F-Secure.com>
 
        * peigen.c (pe_print_idata): Undo part of 2000-05-12 change that
index cd61cc6c4bb08aa30167fae8557607062817c0d6..542b69f7380c93f77bc262087f2b4bfef652bf1d 100644 (file)
--- a/bfd/som.c
+++ b/bfd/som.c
@@ -5365,6 +5365,8 @@ som_decode_symclass (symbol)
     return 'U';
   if (bfd_is_ind_section (symbol->section))
     return 'I';
+  if (symbol->flags & BSF_WEAK)
+    return 'W';
   if (!(symbol->flags & (BSF_GLOBAL|BSF_LOCAL)))
     return '?';
 
This page took 0.03705 seconds and 4 git commands to generate.