summaryrefslogtreecommitdiff
path: root/bfd/elf64-alpha.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2005-05-22 22:07:31 +0000
committerRichard Henderson <rth@redhat.com>2005-05-22 22:07:31 +0000
commit487c435301ca74f6ef5dced9e1a0e60815ecddb7 (patch)
tree4c4effc6c5be870e73623875882804b02e0431d6 /bfd/elf64-alpha.c
parent175ac04375db1247484c69df0c897d00a0db4b8d (diff)
downloadbinutils-gdb-487c435301ca74f6ef5dced9e1a0e60815ecddb7.tar.gz
* elf64-alpha.c (elf64_alpha_relax_section): Only operate
on SEC_CODE sections.
Diffstat (limited to 'bfd/elf64-alpha.c')
-rw-r--r--bfd/elf64-alpha.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf64-alpha.c b/bfd/elf64-alpha.c
index 252af59c4cd..1778b9226ae 100644
--- a/bfd/elf64-alpha.c
+++ b/bfd/elf64-alpha.c
@@ -1969,7 +1969,7 @@ elf64_alpha_relax_section (abfd, sec, link_info, again)
*again = FALSE;
if (link_info->relocatable
- || (sec->flags & SEC_RELOC) == 0
+ || (sec->flags & (SEC_CODE | SEC_RELOC)) != (SEC_CODE | SEC_RELOC)
|| sec->reloc_count == 0)
return TRUE;