2016-05-03 09:21:08 +08:00
|
|
|
# REQUIRES: x86
|
2016-11-15 16:07:14 +08:00
|
|
|
# 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
|
2016-05-03 09:21:08 +08:00
|
|
|
|
|
|
|
.globl _start
|
|
|
|
_start:
|
|
|
|
|
2016-11-21 21:49:57 +08:00
|
|
|
# CHECK: {{.*}}input1.o:(.text+0x1): relocation R_X86_64_PLT32 cannot refer to absolute symbol 'answer' defined in {{.*}}input2.o
|
2016-05-03 09:21:08 +08:00
|
|
|
|
2016-11-15 16:07:14 +08:00
|
|
|
call answer@PLT
|