summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wilson <wilson@tuliptree.org>2001-07-05 18:27:55 +0000
committerJim Wilson <wilson@tuliptree.org>2001-07-05 18:27:55 +0000
commita5fcd2f074d16ce52bf0d77f651cc910a3807079 (patch)
tree7614e14a5cacc42f21909804deb8da06add2321b
parentc709989b9e14c5e9b3a1e94d651bf6b29dfc66f3 (diff)
downloadgdb-a5fcd2f074d16ce52bf0d77f651cc910a3807079.tar.gz
Fix ia64-linux binutils readelf -s testsuite failure.
* syms.c (bfd_is_local_label): Return false if BSF_SECTION_SYM.
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/syms.c5
2 files changed, 8 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index ab720b10c05..ec94ce98e2e 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,7 @@
+2001-07-05 Jim Wilson <wilson@redhat.com>
+
+ * syms.c (bfd_is_local_label): Return false if BSF_SECTION_SYM.
+
2001-07-05 Nick Clifton <nickc@cambridge.redhat.com>
* peicode.h (coff_swap_scnhdr_in): For sections containing
diff --git a/bfd/syms.c b/bfd/syms.c
index 311806e1f6b..d8489188576 100644
--- a/bfd/syms.c
+++ b/bfd/syms.c
@@ -353,7 +353,10 @@ bfd_is_local_label (abfd, sym)
bfd *abfd;
asymbol *sym;
{
- if ((sym->flags & (BSF_GLOBAL | BSF_WEAK)) != 0)
+ /* 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)
return false;
if (sym->name == NULL)
return false;