Xamarin Public Jenkins (auto-signing) 468663ddbb Imported Upstream version 6.10.0.49
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
2020-01-16 16:38:04 +00:00

29 lines
646 B
ArmAsm

# 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
# REQUIRES: mips
# CHECK: Symbol {
# CHECK: Name: $.str
# CHECK-NEXT: Value: 0xF4
# 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"