blob: 3284ef255be8081114e32eabd7e54d5e75c7bb85 [file] [log] [blame]
Mehdi Amini68da4262016-04-12 21:35:18 +00001; RUN: opt -module-summary %s -o %t.bc
2; RUN: opt -module-summary %p/Inputs/funcimport_appending_global.ll -o %t2.bc
Teresa Johnson1e20a652015-12-03 18:20:05 +00003; RUN: llvm-lto -thinlto -o %t3 %t.bc %t2.bc
4
5; Do the import now
Teresa Johnson26ab5772016-03-15 00:04:37 +00006; RUN: llvm-link %t.bc -summary-index=%t3.thinlto.bc -import=foo:%t2.bc -S | FileCheck %s
Teresa Johnson1e20a652015-12-03 18:20:05 +00007
8; Ensure that global constructor (appending linkage) is not imported
9; CHECK-NOT: @llvm.global_ctors = {{.*}}@foo
10
11declare void @f()
12@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @f, i8* null}]
13
14define i32 @main() {
15entry:
16 call void @foo()
17 ret i32 0
18}
19
20declare void @foo()