summaryrefslogtreecommitdiff
path: root/bfd/elf32-spu.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2009-03-15 03:28:51 +0000
committerAlan Modra <amodra@bigpond.net.au>2009-03-15 03:28:51 +0000
commit9ba521e55edca99fb17c8b6f56960770a50271f5 (patch)
treeb2178e7b04f4b0713b20ce820e3faa762856b0ac /bfd/elf32-spu.c
parentaa6c9e1ec0726f43d513adba1e10901073a67155 (diff)
downloadbinutils-redhat-9ba521e55edca99fb17c8b6f56960770a50271f5.tar.gz
* elf32-spu.c (build_stub): Correct icache set_id.
(spu_elf_relocate_section): Likewise.
Diffstat (limited to 'bfd/elf32-spu.c')
-rw-r--r--bfd/elf32-spu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/elf32-spu.c b/bfd/elf32-spu.c
index 115fa49c57..72ddccf25e 100644
--- a/bfd/elf32-spu.c
+++ b/bfd/elf32-spu.c
@@ -1330,7 +1330,7 @@ build_stub (struct bfd_link_info *info,
bfd_put_32 (sec->owner, dest_ovl - 1,
sec->contents + sec->size + 0);
- set_id = (dest_ovl - 1) >> htab->num_lines_log2;
+ set_id = ((dest_ovl - 1) >> htab->num_lines_log2) + 1;
bfd_put_32 (sec->owner, (set_id << 18) | (dest & 0x3ffff),
sec->contents + sec->size + 4);
bfd_put_32 (sec->owner, (lrlive << 29) | (g->br_addr & 0x3ffff),
@@ -4768,9 +4768,9 @@ spu_elf_relocate_section (bfd *output_bfd,
unsigned int ovl = overlay_index (sec);
if (ovl != 0)
{
- unsigned int set_id = (ovl - 1) >> htab->num_lines_log2;
+ unsigned int set_id = ((ovl - 1) >> htab->num_lines_log2) + 1;
relocation += set_id << 18;
- overlay_encoded = set_id != 0;
+ overlay_encoded = TRUE;
}
}
}