* ld-mips-elf/reloc-merge-lo16.{s,d,ld}: New test.
* ld-mips-elf/mips-elf.exp: Run it.
This commit is contained in:
parent
855bd88ab8
commit
17a6716ad0
5 changed files with 59 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-07-08 Maciej W. Rozycki <macro@linux-mips.org>
|
||||
|
||||
* ld-mips-elf/reloc-merge-lo16.{s,d,ld}: New test.
|
||||
* ld-mips-elf/mips-elf.exp: Run it.
|
||||
|
||||
2004-07-02 Kaz Kojima <kkojima@rr.iij4u.or.jp>
|
||||
|
||||
* ld-elf/frame.exp: Don't run on sh*-*-elf*.
|
||||
|
|
|
@ -74,3 +74,4 @@ if $has_newabi {
|
|||
}
|
||||
}
|
||||
run_dump_test "reloc-2"
|
||||
run_dump_test "reloc-merge-lo16"
|
||||
|
|
16
ld/testsuite/ld-mips-elf/reloc-merge-lo16.d
Normal file
16
ld/testsuite/ld-mips-elf/reloc-merge-lo16.d
Normal file
|
@ -0,0 +1,16 @@
|
|||
#name: MIPS ELF lo16 merge
|
||||
#source: reloc-merge-lo16.s
|
||||
#ld: -Treloc-merge-lo16.ld
|
||||
#objdump: -td --prefix-addresses --show-raw-insn
|
||||
|
||||
# Test lo16 reloc calculation with string merging.
|
||||
|
||||
.*: +file format .*mips.*
|
||||
#...
|
||||
0+80fe70 l .rodata 0+000000 g
|
||||
0+400000 g F .text 0+000000 __start
|
||||
#...
|
||||
0+400000 <[^>]*> 3c020081 lui v0,0x81
|
||||
0+400004 <[^>]*> 2443fe70 addiu v1,v0,-400
|
||||
0+400008 <[^>]*> 2442fe70 addiu v0,v0,-400
|
||||
\.\.\.
|
9
ld/testsuite/ld-mips-elf/reloc-merge-lo16.ld
Normal file
9
ld/testsuite/ld-mips-elf/reloc-merge-lo16.ld
Normal file
|
@ -0,0 +1,9 @@
|
|||
ENTRY(__start)
|
||||
SECTIONS
|
||||
{
|
||||
. = 0x0400000;
|
||||
.text : { *(.text) }
|
||||
. = 0x0800000;
|
||||
.rodata : { *(.rodata.*) }
|
||||
/DISCARD/ : { *(*) }
|
||||
}
|
28
ld/testsuite/ld-mips-elf/reloc-merge-lo16.s
Normal file
28
ld/testsuite/ld-mips-elf/reloc-merge-lo16.s
Normal file
|
@ -0,0 +1,28 @@
|
|||
.section .rodata.str1.4,"aMS", @progbits, 1
|
||||
.macro fillstr char
|
||||
.rept 0x3fff - \char
|
||||
.byte \char
|
||||
.endr
|
||||
.byte 0
|
||||
.endm
|
||||
fillstr 'a'
|
||||
fillstr 'h'
|
||||
fillstr 'c'
|
||||
fillstr 'd'
|
||||
fillstr 'g'
|
||||
fillstr 'f'
|
||||
g:
|
||||
fillstr 'g'
|
||||
fillstr 'h'
|
||||
|
||||
.text
|
||||
.globl __start
|
||||
.ent __start
|
||||
.type __start, @function
|
||||
__start:
|
||||
lui $2, %hi(g)
|
||||
addiu $3, $2, %lo(g)
|
||||
addiu $2, $2, %lo(g)
|
||||
.end __start
|
||||
|
||||
.space 16
|
Loading…
Reference in a new issue