2003-09-15 20:04:28 +00:00
|
|
|
; RUN: llvm-as < %s > %t.bc
|
|
|
|
; RUN: llvm-as < `dirname %s`/testlink2.ll > %t2.bc
|
|
|
|
; RUN: llvm-link %t.bc %t2.bc
|
2001-10-13 07:15:38 +00:00
|
|
|
|
2003-04-21 21:06:25 +00:00
|
|
|
%MyVar = external global int
|
2001-10-13 07:15:38 +00:00
|
|
|
%MyIntList = global { \2 *, int } { { \2, int }* null, int 17 }
|
2003-04-21 21:06:25 +00:00
|
|
|
external global int ; int*:0
|
2001-10-13 07:15:38 +00:00
|
|
|
|
|
|
|
%AConst = constant int 123
|
|
|
|
|
2001-11-26 19:17:06 +00:00
|
|
|
%Intern1 = internal constant int 42
|
|
|
|
%Intern2 = internal constant int 792
|
|
|
|
|
2001-10-15 03:11:58 +00:00
|
|
|
; Initialized to point to external %MyVar
|
2003-04-23 18:38:13 +00:00
|
|
|
%MyVarPtr = linkonce global { int * } { int * %MyVar }
|
2001-10-15 03:11:58 +00:00
|
|
|
|
2001-10-13 07:15:38 +00:00
|
|
|
declare int "foo"(int %blah) ;; Declared in testlink2.ll
|
|
|
|
|
|
|
|
declare void "print"(int %Value)
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
void "main"()
|
|
|
|
begin
|
|
|
|
%v1 = load int* %MyVar
|
|
|
|
call void %print(int %v1) ;; Should start out 4
|
|
|
|
|
2003-04-21 21:06:25 +00:00
|
|
|
%idx = getelementptr { \2 *, int }* %MyIntList, long 0, ubyte 1
|
2002-08-21 23:52:57 +00:00
|
|
|
%v2 = load int* %idx
|
2001-10-13 07:15:38 +00:00
|
|
|
call void %print(int %v2) ;; Should start out 17
|
|
|
|
|
|
|
|
call int %foo(int 5) ;; Modify global variablesx
|
|
|
|
|
|
|
|
%v3 = load int* %MyVar
|
|
|
|
call void %print(int %v3) ;; Should now be 5
|
|
|
|
|
2002-08-21 23:52:57 +00:00
|
|
|
%v4 = load int* %idx
|
2001-10-13 07:15:38 +00:00
|
|
|
call void %print(int %v4) ;; Should start out 12
|
|
|
|
|
|
|
|
ret void
|
|
|
|
end
|
|
|
|
|
2001-11-26 19:17:06 +00:00
|
|
|
internal void "testintern"() begin ret void end
|
|
|
|
internal void "Testintern"() begin ret void end
|
|
|
|
void "testIntern"() begin ret void end
|
|
|
|
|