zig/deps/lld/test/COFF/lto-parallel.ll
2018-08-04 17:47:16 -04:00

24 lines
510 B
LLVM

; REQUIRES: x86
; RUN: llvm-as -o %t.obj %s
; RUN: lld-link -opt:noicf /out:%t.exe /entry:foo /include:bar /opt:lldltopartitions=2 /subsystem:console /lldmap:%t.map %t.obj
; RUN: FileCheck %s < %t.map
target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-windows-msvc"
; CHECK: lto.tmp
; CHECK: lto.tmp
; CHECK-NEXT: foo
define void @foo() {
call void @bar()
ret void
}
; CHECK: lto.tmp
; CHECK: lto.tmp
; CHECK: bar
define void @bar() {
call void @foo()
ret void
}