aboutsummaryrefslogtreecommitdiff
path: root/test/ELF/lto/drop-linkage.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/ELF/lto/drop-linkage.ll')
-rw-r--r--test/ELF/lto/drop-linkage.ll14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/ELF/lto/drop-linkage.ll b/test/ELF/lto/drop-linkage.ll
new file mode 100644
index 000000000000..fd111c18bd13
--- /dev/null
+++ b/test/ELF/lto/drop-linkage.ll
@@ -0,0 +1,14 @@
+target triple = "x86_64-unknown-linux-gnu"
+target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
+
+; REQUIRES: x86
+; RUN: llc %s -o %t.o -filetype=obj
+; RUN: llvm-as %p/Inputs/drop-linkage.ll -o %t2.o
+; RUN: ld.lld %t.o %t2.o -o %t.so -save-temps -shared
+; RUN: llvm-dis %t.so.lto.opt.bc -o - | FileCheck %s
+
+define void @foo() {
+ ret void
+}
+
+; CHECK: declare void @foo()