mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
2662e16e5d
llvm-mc is a developer tool, as such it make sense for it to use new features by default. This doesn't change the user facing clang, which still defaults to non relaxable relocations. llvm-svn: 273014
30 lines
1.1 KiB
ArmAsm
30 lines
1.1 KiB
ArmAsm
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux %s -o - | llvm-readobj -r | FileCheck %s
|
|
|
|
// these should produce R_X86_64_REX_GOTPCRELX
|
|
|
|
movq mov@GOTPCREL(%rip), %rax
|
|
test %rax, test@GOTPCREL(%rip)
|
|
adc adc@GOTPCREL(%rip), %rax
|
|
add add@GOTPCREL(%rip), %rax
|
|
and and@GOTPCREL(%rip), %rax
|
|
cmp cmp@GOTPCREL(%rip), %rax
|
|
or or@GOTPCREL(%rip), %rax
|
|
sbb sbb@GOTPCREL(%rip), %rax
|
|
sub sub@GOTPCREL(%rip), %rax
|
|
xor xor@GOTPCREL(%rip), %rax
|
|
|
|
// CHECK: Relocations [
|
|
// CHECK-NEXT: Section ({{.*}}) .rela.text {
|
|
// CHECK-NEXT: R_X86_64_REX_GOTPCRELX mov
|
|
// CHECK-NEXT: R_X86_64_REX_GOTPCRELX test
|
|
// CHECK-NEXT: R_X86_64_REX_GOTPCRELX adc
|
|
// CHECK-NEXT: R_X86_64_REX_GOTPCRELX add
|
|
// CHECK-NEXT: R_X86_64_REX_GOTPCRELX and
|
|
// CHECK-NEXT: R_X86_64_REX_GOTPCRELX cmp
|
|
// CHECK-NEXT: R_X86_64_REX_GOTPCRELX or
|
|
// CHECK-NEXT: R_X86_64_REX_GOTPCRELX sbb
|
|
// CHECK-NEXT: R_X86_64_REX_GOTPCRELX sub
|
|
// CHECK-NEXT: R_X86_64_REX_GOTPCRELX xor
|
|
// CHECK-NEXT: }
|
|
// CHECK-NEXT: ]
|