xref: /aosp_15_r20/external/llvm/test/MC/ELF/got.s (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -r -t | FileCheck %s
2*9880d681SAndroid Build Coastguard Worker
3*9880d681SAndroid Build Coastguard Worker// Test that this produces the correct relocations R_X86_64_GOT32 and that we,
4*9880d681SAndroid Build Coastguard Worker// unlike gas, don't create a _GLOBAL_OFFSET_TABLE_ symbol as a side effect.
5*9880d681SAndroid Build Coastguard Worker
6*9880d681SAndroid Build Coastguard Worker        movl	foo@GOT, %eax
7*9880d681SAndroid Build Coastguard Worker        movl	foo@GOTPCREL(%rip), %eax
8*9880d681SAndroid Build Coastguard Worker
9*9880d681SAndroid Build Coastguard Worker// CHECK:      Relocations [
10*9880d681SAndroid Build Coastguard Worker// CHECK:        Section ({{[^ ]+}}) .rela.text {
11*9880d681SAndroid Build Coastguard Worker// CHECK-NEXT:       0x{{[^ ]+}} R_X86_64_GOT32 foo 0x{{[^ ]+}}
12*9880d681SAndroid Build Coastguard Worker// CHECK-NEXT:       0x{{[^ ]+}} R_X86_64_GOTPCREL foo 0x{{[^ ]+}}
13*9880d681SAndroid Build Coastguard Worker// CHECK-NEXT:   }
14*9880d681SAndroid Build Coastguard Worker// CHECK-NEXT: ]
15*9880d681SAndroid Build Coastguard Worker
16*9880d681SAndroid Build Coastguard Worker// CHECK:        Symbols [
17*9880d681SAndroid Build Coastguard Worker// CHECK-NOT:          _GLOBAL_OFFSET_TABLE_
18