blob: 35b6eeb6f6493f00b2b2692f3366153eedb9c595 [file] [log] [blame]
Chris Lattnerfce9d702002-08-20 19:32:17 +00001; RUN: as < %s > Output/%s.bc
2; RUN: as < testlink2.ll > Output/testlink2.bc
3; RUN: link Output/%s.bc Output/testlink2.bc
Chris Lattner285c68d2001-10-13 07:15:38 +00004
5%MyVar = uninitialized global int
6%MyIntList = global { \2 *, int } { { \2, int }* null, int 17 }
7 uninitialized global int ; int*:0
8
9%AConst = constant int 123
10
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
15%MyVarPtr = global { int * } { int * %MyVar }
16
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
Chris Lattnere7e59182002-08-21 23:52:57 +000028 %idx = getelementptr { \2 *, int }* %MyIntList, uint 0, ubyte 1
29 %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