forked from OSchip/llvm-project
16 lines
509 B
ArmAsm
16 lines
509 B
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/undef.s -o %t2.o
|
|
# RUN: llvm-ar rc %t2.a %t2.o
|
|
# RUN: not ld.lld %t.o %t2.a -o %t.exe 2>&1 | FileCheck %s
|
|
# RUN: not ld.lld -pie %t.o %t2.a -o %t.exe 2>&1 | FileCheck %s
|
|
# CHECK: undefined symbol: bar in {{.*}}
|
|
# CHECK: undefined symbol: foo in {{.*}}
|
|
# CHECK: undefined symbol: zed2 in {{.*}}2.a({{.*}}.o)
|
|
|
|
.globl _start
|
|
_start:
|
|
call foo
|
|
call bar
|
|
call zed1
|