llvm/test/Linker/funcimport2.ll
Rafael Espindola e361154a0d Add a test for r258362.
Thanks to Mehdi for finding it.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@259394 91177308-0d34-0410-b5e6-96231b3b80d8
2016-02-01 19:56:12 +00:00

18 lines
463 B
LLVM

; RUN: llvm-as -function-summary %s -o %t1.bc
; RUN: llvm-as -function-summary %p/Inputs/funcimport2.ll -o %t2.bc
; RUN: llvm-lto -thinlto -o %t3 %t1.bc %t2.bc
; RUN: llvm-link -import=bar:%t2.bc %t1.bc -functionindex=%t3.thinlto.bc -S | FileCheck %s
; CHECK: define linkonce_odr hidden void @foo() {
define available_externally hidden void @foo() {
ret void
}
declare void @bar()
define void @caller() {
call void @bar()
call void @foo()
ret void
}