diff --git a/test/Linker/AppendingLinkage.ll b/test/Linker/AppendingLinkage.ll index 129e4582994..de925a7d6c9 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 +}