summaryrefslogtreecommitdiff
path: root/bfd/elf32-spu.c
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2009-05-14 14:39:04 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2009-05-14 14:39:04 +0000
commitd8289dca8a574fa9aca12c5597664a6c4418b1e0 (patch)
tree9189b8c6a539615acd026a7644d4ededaed5a78f /bfd/elf32-spu.c
parent6786da5e182e0d9e987c3c0ef4aa20072a99ba4c (diff)
downloadbinutils-redhat-d8289dca8a574fa9aca12c5597664a6c4418b1e0.tar.gz
* elf32-spu.c (spu_elf_size_stubs): Even in software i-cache mode,
generate only a 16-byte .toe section. (spu_elf_build_stubs, spu_elf_auto_overlay): Likewise.
Diffstat (limited to 'bfd/elf32-spu.c')
-rw-r--r--bfd/elf32-spu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bfd/elf32-spu.c b/bfd/elf32-spu.c
index 06091f3f90..7cdcb035f4 100644
--- a/bfd/elf32-spu.c
+++ b/bfd/elf32-spu.c
@@ -1748,7 +1748,7 @@ spu_elf_size_stubs (struct bfd_link_info *info)
if (htab->toe == NULL
|| !bfd_set_section_alignment (ibfd, htab->toe, 4))
return 0;
- htab->toe->size = htab->params->ovly_flavour == ovly_soft_icache ? 256 : 16;
+ htab->toe->size = 16;
return 2;
}
@@ -2088,7 +2088,7 @@ spu_elf_build_stubs (struct bfd_link_info *info)
return FALSE;
h->root.u.def.section = htab->toe;
h->root.u.def.value = 0;
- h->size = htab->params->ovly_flavour == ovly_soft_icache ? 16 * 16 : 16;
+ h->size = 16;
return TRUE;
}
@@ -4272,8 +4272,8 @@ spu_elf_auto_overlay (struct bfd_link_info *info)
fixed_size += htab->params->max_branch << (htab->num_lines_log2 + 4);
/* c) Indirect branch descriptors, 8 quadwords. */
fixed_size += 8 * 16;
- /* d) Pointers to __ea backing store, 16 quadwords. */
- fixed_size += 16 * 16;
+ /* d) Pointer to __ea backing store (toe), 1 quadword. */
+ fixed_size += 16;
}
else
{