summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--llvm/test/Linker/Inputs/funcimport2.ll8
-rw-r--r--llvm/test/Linker/funcimport2.ll17
2 files changed, 25 insertions, 0 deletions
diff --git a/llvm/test/Linker/Inputs/funcimport2.ll b/llvm/test/Linker/Inputs/funcimport2.ll
new file mode 100644
index 00000000000..4d0ec6c03f6
--- /dev/null
+++ b/llvm/test/Linker/Inputs/funcimport2.ll
@@ -0,0 +1,8 @@
+define linkonce_odr hidden void @foo() {
+ ret void
+}
+
+define void @bar() {
+ call void @foo()
+ ret void
+}
diff --git a/llvm/test/Linker/funcimport2.ll b/llvm/test/Linker/funcimport2.ll
new file mode 100644
index 00000000000..af10a1378c0
--- /dev/null
+++ b/llvm/test/Linker/funcimport2.ll
@@ -0,0 +1,17 @@
+; 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
+}
OpenPOWER on IntegriCloud