summaryrefslogtreecommitdiff
path: root/test/Linker/AppendingLinkage.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-05-13 21:32:48 +0000
committerChris Lattner <sabre@nondot.org>2003-05-13 21:32:48 +0000
commitc49b27a7df46949ff64101e21fb694b228d13b80 (patch)
tree144180b1572888625a1389cd4d679209bce772b6 /test/Linker/AppendingLinkage.ll
parentd450a0a4f12c457e4a1f7fde772916d891a8894b (diff)
downloadllvm-c49b27a7df46949ff64101e21fb694b228d13b80.tar.gz
llvm-c49b27a7df46949ff64101e21fb694b228d13b80.tar.bz2
llvm-c49b27a7df46949ff64101e21fb694b228d13b80.tar.xz
Add uses of the appending variable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6177 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Linker/AppendingLinkage.ll')
-rw-r--r--test/Linker/AppendingLinkage.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Linker/AppendingLinkage.ll b/test/Linker/AppendingLinkage.ll
index 129e458299..de925a7d6c 100644
--- a/test/Linker/AppendingLinkage.ll
+++ b/test/Linker/AppendingLinkage.ll
@@ -5,3 +5,10 @@
; RUN: link Output/%s.[12].bc | dis | grep 7 | grep 4 | grep 8
%X = appending global [2 x int] [int 7, int 4]
+
+%Y = global int* getelementptr ([2 x int]* %X, long 0, long 0)
+
+void %foo(long %V) {
+ %Y = getelementptr [2 x int]* %X, long 0, long %V
+ ret void
+}