summaryrefslogtreecommitdiff
path: root/llvm/test/MC/X86/pltoff.s
blob: 75b79aed79a667cd44090c07264233bc1e6a0ea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# RUN: llvm-mc -triple=x86_64 %s | FileCheck %s --check-prefix=ASM
# RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t
# RUN: llvm-objdump --no-print-imm-hex -d -r %t | FileCheck %s --check-prefix=OBJ

# RUN: not llvm-mc -filetype=obj -triple=x86_64 --defsym ERR=1 %s -o /dev/null 2>&1 | FileCheck %s --check-prefix=ERR

# ASM:      movabsq $puts@PLTOFF, %rax
# OBJ:      movabsq $0, %rax
# OBJ-NEXT:   0000000000000002: R_X86_64_PLTOFF64 puts{{$}}

movabsq $puts@PLTOFF, %rax

.ifdef ERR
# ERR: {{.*}}.s:[[#@LINE+1]]:1: error: 64 bit reloc applied to a field with a different size
movl $puts@PLTOFF, %eax
.endif