summaryrefslogtreecommitdiff
path: root/bfd/som.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2000-09-26 01:45:26 +0000
committerAlan Modra <amodra@bigpond.net.au>2000-09-26 01:45:26 +0000
commitab85f45f322cd1699f9ba59a6c2eaa287579293a (patch)
tree1bf9f3cb4aab52fdf801a158645a1332dcaeeaa2 /bfd/som.c
parent52217fdd97406635bac11a58899249ebb116d48a (diff)
downloadbinutils-redhat-ab85f45f322cd1699f9ba59a6c2eaa287579293a.tar.gz
Make weak symbols SS_UNIVERSAL (ie. global)
Diffstat (limited to 'bfd/som.c')
-rw-r--r--bfd/som.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/som.c b/bfd/som.c
index b3ad9977b1..ffd65897e6 100644
--- a/bfd/som.c
+++ b/bfd/som.c
@@ -4069,7 +4069,8 @@ som_bfd_derive_misc_symbol_info (abfd, sym, info)
of common symbols was handled earlier! */
if (bfd_is_und_section (sym->section))
info->symbol_scope = SS_UNSAT;
- else if (sym->flags & BSF_EXPORT && ! bfd_is_com_section (sym->section))
+ else if (sym->flags & (BSF_EXPORT | BSF_WEAK)
+ && ! bfd_is_com_section (sym->section))
info->symbol_scope = SS_UNIVERSAL;
/* Anything else which is not in the common section has scope
SS_LOCAL. */