hanchenye-llvm-project/lld/test/COFF/lto-parallel.ll

21 lines
449 B
LLVM

; RUN: llvm-as -o %t.obj %s
; RUN: lld-link /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-NEXT: foo
define void @foo() {
call void @bar()
ret void
}
; CHECK: lto.tmp
; CHECK: bar
define void @bar() {
call void @foo()
ret void
}