2017-07-19 02:40:50 +08:00
|
|
|
// REQUIRES: x86
|
2015-10-10 05:07:25 +08:00
|
|
|
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
|
|
|
// RUN: llvm-ar rcs %t.a %t.o
|
2018-07-03 01:48:23 +08:00
|
|
|
// RUN: not ld.lld -o /dev/null -u _start %t.a 2>&1 | FileCheck %s
|
2015-10-10 05:07:25 +08:00
|
|
|
|
2016-09-09 05:06:29 +08:00
|
|
|
// CHECK: target emulation unknown: -m or at least one .o file required
|
2015-10-10 05:07:25 +08:00
|
|
|
|
|
|
|
.global _start
|
|
|
|
_start:
|