diff options
Diffstat (limited to 'ld/testsuite/ld-mips-elf/reloc-5.s')
-rw-r--r-- | ld/testsuite/ld-mips-elf/reloc-5.s | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ld/testsuite/ld-mips-elf/reloc-5.s b/ld/testsuite/ld-mips-elf/reloc-5.s new file mode 100644 index 0000000..a4b31b7 --- /dev/null +++ b/ld/testsuite/ld-mips-elf/reloc-5.s @@ -0,0 +1,11 @@ + .text + .globl _start +_start: + lw $2, %gp_rel(i)($28) + + .section .sdata + .space 0x10000 + + .section .sbss +i: + .space 4 |