summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/elf32-spu.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 8d20b8137d2..c6878ac0012 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,9 @@
2009-01-13 Alan Modra <amodra@bigpond.net.au>
+ * elf32-spu.c (spu_elf_build_stubs): Make __icache_base absolute.
+
+2009-01-13 Alan Modra <amodra@bigpond.net.au>
+
* elf32-spu.c (remove_cycles): Always set call->max_depth.
2009-01-12 Alan Modra <amodra@bigpond.net.au>
diff --git a/bfd/elf32-spu.c b/bfd/elf32-spu.c
index e94c70b9b5f..318c5b4deec 100644
--- a/bfd/elf32-spu.c
+++ b/bfd/elf32-spu.c
@@ -1951,8 +1951,8 @@ spu_elf_build_stubs (struct bfd_link_info *info)
h = define_ovtab_symbol (htab, "__icache_base");
if (h == NULL)
return FALSE;
- h->root.u.def.value = 0;
- h->root.u.def.section = htab->ovl_sec[0];
+ h->root.u.def.value = htab->ovl_sec[0]->vma;
+ h->root.u.def.section = bfd_abs_section_ptr;
h->size = htab->num_buf << htab->line_size_log2;
if (htab->init != NULL && htab->init->size != 0)