1; RUN: opt -module-summary %s -o %t.bc 2; RUN: opt -module-summary %p/Inputs/funcimport_appending_global.ll -o %t2.bc 3; RUN: llvm-lto -thinlto -o %t3 %t.bc %t2.bc 4 5; Do the import now 6; RUN: llvm-link %t.bc -summary-index=%t3.thinlto.bc -import=foo:%t2.bc -S | FileCheck %s 7 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() 21