* elfxx-mips.c (mips_elf_calculate_relocation): Don't report an

overflow for calls to undefined weak symbols.
This commit is contained in:
Richard Sandiford
2004-12-14 09:48:20 +00:00
parent 4446463b16
commit c314987d19
6 changed files with 28 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-12-14 Richard Sandiford <rsandifo@redhat.com>
* ld-mips-elf/jal-overflow-2.[sd]: New test.
* ld-mips-elf/mips-elf.exp: Run it.
2004-12-13 Richard Sandiford <rsandifo@redhat.com>
* ld-mips-elf/mips-elf.exp: Only run jalbal if n32 is supported.

View File

@ -0,0 +1,8 @@
#name: JAL overflow 2
#source: jaloverflow-2.s
#as:
#ld: -Ttext=0x10000000 -e start
#objdump: -dr
#...
0*10000000: 0c000000.*
#pass

View File

@ -0,0 +1,7 @@
# jal relocs against undefined weak symbols should not be treated as
# overflowing
.globl start
.weak foo
start:
jal foo

View File

@ -81,6 +81,7 @@ if {$has_newabi && $linux_gnu} {
}
run_dump_test "jaloverflow"
run_dump_test "jaloverflow-2"
if {$has_newabi} {
run_dump_test "jalbal"
}