diff options
Diffstat (limited to 'test/ELF/mips-got-string.s')
-rw-r--r-- | test/ELF/mips-got-string.s | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/test/ELF/mips-got-string.s b/test/ELF/mips-got-string.s deleted file mode 100644 index cfdd0daf68dd0..0000000000000 --- a/test/ELF/mips-got-string.s +++ /dev/null @@ -1,27 +0,0 @@ -# REQUIRES: mips -# Check R_MIPS_GOT16 relocation against merge section. - -# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux -o %t.o %s -# RUN: ld.lld -shared -o %t.so %t.o -# RUN: llvm-readobj -t -mips-plt-got %t.so | FileCheck %s - -# CHECK: Symbol { -# CHECK: Name: $.str -# CHECK-NEXT: Value: 0x1B1 -# CHECK: } - -# CHECK: Local entries [ -# CHECK-NEXT: Entry { -# CHECK-NEXT: Address: -# CHECK-NEXT: Access: -32744 -# CHECK-NEXT: Initial: 0x0 -# CHECK: } -# CHECK: ] - - .text - lw $t9, %got($.str)($gp) - addiu $a0, $t9, %lo($.str) - - .section .rodata.str,"aMS",@progbits,1 -$.str: - .asciz "foo" |