You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
20
external/llvm/test/Linker/funcimport_appending_global.ll
vendored
Normal file
20
external/llvm/test/Linker/funcimport_appending_global.ll
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
; RUN: opt -module-summary %s -o %t.bc
|
||||
; RUN: opt -module-summary %p/Inputs/funcimport_appending_global.ll -o %t2.bc
|
||||
; RUN: llvm-lto -thinlto -o %t3 %t.bc %t2.bc
|
||||
|
||||
; Do the import now
|
||||
; RUN: llvm-link %t.bc -summary-index=%t3.thinlto.bc -import=foo:%t2.bc -S | FileCheck %s
|
||||
|
||||
; Ensure that global constructor (appending linkage) is not imported
|
||||
; CHECK-NOT: @llvm.global_ctors = {{.*}}@foo
|
||||
|
||||
declare void @f()
|
||||
@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @f, i8* null}]
|
||||
|
||||
define i32 @main() {
|
||||
entry:
|
||||
call void @foo()
|
||||
ret i32 0
|
||||
}
|
||||
|
||||
declare void @foo()
|
Reference in New Issue
Block a user