summaryrefslogtreecommitdiff
path: root/test/Linker/testlink1.ll
blob: 35b6eeb6f6493f00b2b2692f3366153eedb9c595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
; RUN: as < %s > Output/%s.bc
; RUN: as < testlink2.ll > Output/testlink2.bc
; RUN: link Output/%s.bc Output/testlink2.bc

%MyVar     = uninitialized global int
%MyIntList = global { \2 *, int } { { \2, int }* null, int 17 }
             uninitialized global int      ; int*:0

%AConst    = constant int 123

%Intern1   = internal constant int 42
%Intern2   = internal constant int 792

; Initialized to point to external %MyVar
%MyVarPtr  = global { int * }  { int * %MyVar }

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

	%idx = getelementptr { \2 *, int }* %MyIntList, uint 0, ubyte 1
	%v2 = load int* %idx
	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

	%v4 = load int* %idx
	call void %print(int %v4)    ;; Should start out 12

	ret void
end

internal void "testintern"() begin ret void end
internal void "Testintern"() begin ret void end
         void "testIntern"() begin ret void end