summaryrefslogtreecommitdiff
path: root/bfd/elf32-cris.c
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2011-12-01 02:51:11 +0000
committerHans-Peter Nilsson <hp@axis.com>2011-12-01 02:51:11 +0000
commit1a60ca762d4b50d65e275a1c7bd5e2af6a3d194e (patch)
treead325222700cf4883d4eb388839d78c0a8cf70d9 /bfd/elf32-cris.c
parent22c1ff786911def07c1f5861d0d534a153b2f4b8 (diff)
downloadbinutils-redhat-1a60ca762d4b50d65e275a1c7bd5e2af6a3d194e.tar.gz
* elf32-cris.c (cris_elf_check_relocs) <plt accounting for
R_CRIS_8, R_CRIS_16, and R_CRIS_32>: Move early break for non-SEC_ALLOC sections before GOT and PLT accounting.
Diffstat (limited to 'bfd/elf32-cris.c')
-rw-r--r--bfd/elf32-cris.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/bfd/elf32-cris.c b/bfd/elf32-cris.c
index 033d1c8b79..563e2c075e 100644
--- a/bfd/elf32-cris.c
+++ b/bfd/elf32-cris.c
@@ -3583,6 +3583,12 @@ cris_elf_check_relocs (bfd *abfd,
sec,
cris_elf_howto_table[r_type].name);
}
+
+ /* We don't need to handle relocs into sections not going into
+ the "real" output. */
+ if ((sec->flags & SEC_ALLOC) == 0)
+ break;
+
if (h != NULL)
{
h->non_got_ref = 1;
@@ -3612,11 +3618,6 @@ cris_elf_check_relocs (bfd *abfd,
if (! info->shared)
break;
- /* We don't need to handle relocs into sections not going into
- the "real" output. */
- if ((sec->flags & SEC_ALLOC) == 0)
- break;
-
/* We may need to create a reloc section in the dynobj and made room
for this reloc. */
if (sreloc == NULL)