1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/Linker/AppendingLinkage.ll
Chris Lattner 72f39089ca Add uses of the appending variable
llvm-svn: 6177
2003-05-13 21:32:48 +00:00

15 lines
417 B
LLVM

; Test that appending linkage works correctly.
; RUN: echo "%X = appending global [1x int] [int 8]" | as > Output/%s.2.bc
; RUN: as < %s > Output/%s.1.bc
; 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
}