9 lines
213 B
ArmAsm
9 lines
213 B
ArmAsm
|
// REQUIRES: x86
|
||
|
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
||
|
// RUN: rm -f %t.a
|
||
|
// RUN: llvm-ar rcs %t.a %t.o
|
||
|
// RUN: ld.lld -o /dev/null -u _start %t.a 2>&1 | count 0
|
||
|
|
||
|
.global _start
|
||
|
_start:
|