; REQUIRES: x86 ; ; RUN: llc -filetype=obj %s -o %t.obj ; RUN: llc -filetype=obj %p/Inputs/start-lib1.ll -o %t1.obj ; RUN: llc -filetype=obj %p/Inputs/start-lib2.ll -o %t2.obj ; RUN: opt -thinlto-bc %s -o %t.bc ; RUN: opt -thinlto-bc %p/Inputs/start-lib1.ll -o %t1.bc ; RUN: opt -thinlto-bc %p/Inputs/start-lib2.ll -o %t2.bc ; ; RUN: lld-link -out:%t1.exe -entry:main -opt:noref -lldmap:%t1.map \ ; RUN: %t.obj %t1.obj %t2.obj ; RUN: FileCheck --check-prefix=TEST1 %s < %t1.map ; RUN: lld-link -out:%t1.exe -entry:main -opt:noref -lldmap:%t1.thinlto.map \ ; RUN: %t.bc %t1.bc %t2.bc ; RUN: FileCheck --check-prefix=TEST1 %s < %t1.thinlto.map ; TEST1: foo ; TEST1: bar ; ; RUN: lld-link -out:%t2.exe -entry:main -opt:noref -lldmap:%t2.map \ ; RUN: %t.obj -start-lib %t1.obj -end-lib %t2.obj ; RUN: FileCheck --check-prefix=TEST2 %s < %t2.map ; RUN: lld-link -out:%t2.exe -entry:main -opt:noref -lldmap:%t2.thinlto.map \ ; RUN: %t.bc -start-lib %t1.bc -end-lib %t2.bc ; RUN: FileCheck --check-prefix=TEST2 %s < %t2.thinlto.map ; TEST2-NOT: Name: foo ; TEST2: bar ; TEST2-NOT: Name: foo ; ; RUN: lld-link -out:%t3.exe -entry:main -opt:noref -lldmap:%t3.map \ ; RUN: %t.obj -start-lib %t1.obj %t2.obj ; RUN: FileCheck --check-prefix=TEST3 %s < %t3.map ; RUN: lld-link -out:%t3.exe -entry:main -opt:noref -lldmap:%t3.thinlto.map \ ; RUN: %t.bc -start-lib %t1.bc %t2.bc ; RUN: FileCheck --check-prefix=TEST3 %s < %t3.thinlto.map ; TEST3-NOT: foo ; TEST3-NOT: bar target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-windows-msvc" define void @main() { ret void }