diff options
Diffstat (limited to 'test/ELF/mips-got16-relocatable.s')
-rw-r--r-- | test/ELF/mips-got16-relocatable.s | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/test/ELF/mips-got16-relocatable.s b/test/ELF/mips-got16-relocatable.s new file mode 100644 index 0000000000000..963efeb4686ed --- /dev/null +++ b/test/ELF/mips-got16-relocatable.s @@ -0,0 +1,40 @@ +# Check writing updated addend for R_MIPS_GOT16 relocation, +# when produce a relocatable output. + +# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux -o %t.o %s +# RUN: ld.lld -r -o %t %t.o %t.o +# RUN: llvm-objdump -d -r %t | FileCheck -check-prefix=OBJ %s +# RUN: ld.lld -shared -o %t.so %t +# RUN: llvm-objdump -d %t.so | FileCheck -check-prefix=SO %s + +# REQUIRES: mips + +# OBJ: Disassembly of section .text: +# OBJ-NEXT: .text: +# OBJ-NEXT: 0: 8f 99 00 00 lw $25, 0($gp) +# OBJ-NEXT: 00000000: R_MIPS_GOT16 .data +# OBJ-NEXT: 4: 27 24 00 00 addiu $4, $25, 0 +# OBJ-NEXT: 00000004: R_MIPS_LO16 .data +# OBJ-NEXT: 8: 00 00 00 00 nop +# OBJ-NEXT: c: 00 00 00 00 nop +# OBJ-NEXT: 10: 8f 99 00 00 lw $25, 0($gp) +# OBJ-NEXT: 00000010: R_MIPS_GOT16 .data +# OBJ-NEXT: 14: 27 24 00 10 addiu $4, $25, 16 +# OBJ-NEXT: 00000014: R_MIPS_LO16 .data + +# SO: Disassembly of section .text: +# SO-NEXT: .text: +# SO-NEXT: 10000: 8f 99 80 18 lw $25, -32744($gp) +# SO-NEXT: 10004: 27 24 00 00 addiu $4, $25, 0 +# SO-NEXT: 10008: 00 00 00 00 nop +# SO-NEXT: 1000c: 00 00 00 00 nop +# SO-NEXT: 10010: 8f 99 80 18 lw $25, -32744($gp) +# SO-NEXT: 10014: 27 24 00 10 addiu $4, $25, 16 + + .text + lw $t9, %got(.data)($gp) + addiu $a0, $t9, %lo(.data) + + .data +data: + .word 0 |