diff options
author | Alan Modra <amodra@gmail.com> | 2008-06-19 16:16:58 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-06-19 16:16:58 +0000 |
commit | 7c39fb20eab5a7c3b8f060e38bcb7c9a100f5b8c (patch) | |
tree | 335bd7256f558233a060c7c75c619b503a948df1 /bfd | |
parent | b129575789c672720371d408e82e7e31cd81196e (diff) | |
download | gdb-7c39fb20eab5a7c3b8f060e38bcb7c9a100f5b8c.zip gdb-7c39fb20eab5a7c3b8f060e38bcb7c9a100f5b8c.tar.gz gdb-7c39fb20eab5a7c3b8f060e38bcb7c9a100f5b8c.tar.bz2 |
* elf32-spu.c (needs_ovl_stub): Correctly return nonovl_stub for
non-branch insns.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elf32-spu.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 6e53fdf..c17368f 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,10 @@ 2008-06-20 Alan Modra <amodra@bigpond.net.au> + * elf32-spu.c (needs_ovl_stub): Correctly return nonovl_stub for + non-branch insns. + +2008-06-20 Alan Modra <amodra@bigpond.net.au> + * elf32-spu.c (build_stub): Allow wraparound on stub branches. (allocate_spuear_stubs, build_spuear_stubs): Return value from count_stub/build_stub. diff --git a/bfd/elf32-spu.c b/bfd/elf32-spu.c index 89b3422..b41d35f 100644 --- a/bfd/elf32-spu.c +++ b/bfd/elf32-spu.c @@ -819,7 +819,7 @@ needs_ovl_stub (struct elf_link_hash_entry *h, section needs a stub. */ if (spu_elf_section_data (sym_sec->output_section)->u.o.ovl_index != spu_elf_section_data (input_section->output_section)->u.o.ovl_index) - return ovl_stub; + ret = ovl_stub; /* If this insn isn't a branch then we are possibly taking the address of a function and passing it out somehow. */ |