2017-07-19 02:40:50 +08:00
|
|
|
; REQUIRES: x86
|
2017-02-24 07:42:24 +08:00
|
|
|
; RUN: rm -fr %T/thinlto
|
|
|
|
; RUN: mkdir %T/thinlto
|
|
|
|
; RUN: opt -thinlto-bc -o %T/thinlto/main.obj %s
|
|
|
|
; RUN: opt -thinlto-bc -o %T/thinlto/foo.obj %S/Inputs/lto-dep.ll
|
|
|
|
; RUN: lld-link /lldsavetemps /out:%T/thinlto/main.exe /entry:main /subsystem:console %T/thinlto/main.obj %T/thinlto/foo.obj
|
2017-12-16 10:10:00 +08:00
|
|
|
; RUN: llvm-nm %T/thinlto/main.exe1.lto.obj | FileCheck %s
|
2017-02-24 07:42:24 +08:00
|
|
|
|
|
|
|
; CHECK-NOT: U foo
|
|
|
|
|
2019-09-11 07:15:38 +08:00
|
|
|
target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
2017-02-24 07:42:24 +08:00
|
|
|
target triple = "x86_64-pc-windows-msvc"
|
|
|
|
|
|
|
|
define i32 @main() {
|
|
|
|
call void @foo()
|
|
|
|
ret i32 0
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @foo()
|