You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
595 B
17 lines
595 B
# 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 -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
|