blob: 845d0fea3578c7b78b9e7cb6e46ebd62232d8384 [file] [log] [blame]
Misha Brukmanb6cb66f2003-09-15 20:04:28 +00001; RUN: llvm-as < %s > %t.bc
2; RUN: llvm-as < `dirname %s`/testlink2.ll > %t2.bc
3; RUN: llvm-link %t.bc %t2.bc
Chris Lattner285c68d2001-10-13 07:15:38 +00004
Chris Lattner8869c2c2003-04-21 21:06:25 +00005%MyVar = external global int
Chris Lattner285c68d2001-10-13 07:15:38 +00006%MyIntList = global { \2 *, int } { { \2, int }* null, int 17 }
Chris Lattner8869c2c2003-04-21 21:06:25 +00007 external global int ; int*:0
Chris Lattner285c68d2001-10-13 07:15:38 +00008
Chris Lattnerf0db7a92004-12-03 19:48:10 +00009%AConst = linkonce constant int 123
Chris Lattner285c68d2001-10-13 07:15:38 +000010
Chris Lattnerb4b07c72001-11-26 19:17:06 +000011%Intern1 = internal constant int 42
12%Intern2 = internal constant int 792
13
Chris Lattner230e5ef2001-10-15 03:11:58 +000014; Initialized to point to external %MyVar
Chris Lattnere709a212003-04-23 18:38:13 +000015%MyVarPtr = linkonce global { int * } { int * %MyVar }
Chris Lattner230e5ef2001-10-15 03:11:58 +000016
Chris Lattner285c68d2001-10-13 07:15:38 +000017declare int "foo"(int %blah) ;; Declared in testlink2.ll
18
19declare void "print"(int %Value)
20
21implementation
22
23void "main"()
24begin
25 %v1 = load int* %MyVar
26 call void %print(int %v1) ;; Should start out 4
27
Reid Spencere5d4efa2006-11-23 15:14:52 +000028 %idx = getelementptr { \2 *, int }* %MyIntList, long 0, uint 1
Chris Lattnere7e59182002-08-21 23:52:57 +000029 %v2 = load int* %idx
Chris Lattner285c68d2001-10-13 07:15:38 +000030 call void %print(int %v2) ;; Should start out 17
31
32 call int %foo(int 5) ;; Modify global variablesx
33
34 %v3 = load int* %MyVar
35 call void %print(int %v3) ;; Should now be 5
36
Chris Lattnere7e59182002-08-21 23:52:57 +000037 %v4 = load int* %idx
Chris Lattner285c68d2001-10-13 07:15:38 +000038 call void %print(int %v4) ;; Should start out 12
39
40 ret void
41end
42
Chris Lattnerb4b07c72001-11-26 19:17:06 +000043internal void "testintern"() begin ret void end
44internal void "Testintern"() begin ret void end
45 void "testIntern"() begin ret void end
46