Noticed while testing for an out of tree target. There are probably more tests that should be so marked. I'm not sure who owns these tests so I've added a few names I recognise from the recent history. With advice from probinson, ruiu, rafael and dramatically improved by davidb. Thank you all! Differential Revision: https://reviews.llvm.org/D34685 llvm-svn: 308335
13 lines
282 B
LLVM
13 lines
282 B
LLVM
; REQUIRES: x86
|
|
; RUN: llvm-as -o %t.obj %s
|
|
; RUN: rm -f %t.lib
|
|
; RUN: llvm-ar cru %t.lib %t.obj
|
|
; RUN: lld-link /out:%t.exe /entry:main %t.lib
|
|
|
|
target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-pc-windows-msvc"
|
|
|
|
define i32 @main() {
|
|
ret i32 0
|
|
}
|