* syms.c (bfd_is_local_label): Return false for file symbols.
authorAlan Modra <amodra@gmail.com>
Fri, 8 Oct 2004 05:53:59 +0000 (05:53 +0000)
committerAlan Modra <amodra@gmail.com>
Fri, 8 Oct 2004 05:53:59 +0000 (05:53 +0000)
bfd/ChangeLog
bfd/syms.c

index df818211b2b34cb77ef0dce4ddcbb69e2510263e..fcaa49937f5f72cc7b1bdc98724d2495cd72e50a 100644 (file)
@@ -1,3 +1,7 @@
+2004-10-08  Alan Modra  <amodra@bigpond.net.au>
+
+       * syms.c (bfd_is_local_label): Return false for file symbols.
+
 2004-10-07  Bob Wilson  <bob.wilson@acm.org>
 
        * elf32-xtensa.c (elf32xtensa_size_opt): New global variable.
index ca4584c1a11a98a3ca0d679b7f3d0dba2fb5f6b8..e78f5ec7be7ea221e669fe1e19b69523b7b3aacd 100644 (file)
@@ -355,7 +355,7 @@ bfd_is_local_label (bfd *abfd, asymbol *sym)
   /* The BSF_SECTION_SYM check is needed for IA-64, where every label that
      starts with '.' is local.  This would accidentally catch section names
      if we didn't reject them here.  */
-  if ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_SECTION_SYM)) != 0)
+  if ((sym->flags & (BSF_GLOBAL | BSF_WEAK | BSF_FILE | BSF_SECTION_SYM)) != 0)
     return FALSE;
   if (sym->name == NULL)
     return FALSE;