forked from OSchip/llvm-project
13 lines
447 B
ArmAsm
13 lines
447 B
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %tinput1.o
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux \
|
|
# RUN: %S/Inputs/relocation-relative-absolute.s -o %tinput2.o
|
|
# RUN: not ld.lld %tinput1.o %tinput2.o -o %t -pie 2>&1 | FileCheck %s
|
|
|
|
.globl _start
|
|
_start:
|
|
|
|
# CHECK: {{.*}}input1.o:(.text+0x1): relocation R_X86_64_PLT32 cannot refer to absolute symbol 'answer' defined in {{.*}}input2.o
|
|
|
|
call answer@PLT
|