forked from OSchip/llvm-project
10 lines
229 B
ArmAsm
10 lines
229 B
ArmAsm
|
# REQUIRES: x86
|
||
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
|
||
|
# RUN: ld.lld -o %t1.exe %t.o
|
||
|
# RUN: not ld.lld -o %t2.exe %t1.exe 2>&1 | FileCheck %s
|
||
|
# CHECK: unknown file type
|
||
|
|
||
|
.global _start
|
||
|
_start:
|
||
|
ret
|