forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testlink2.ll
36 lines (25 loc) · 932 Bytes
/
testlink2.ll
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
; This file is used by testlink1.ll, so it doesn't actually do anything itself
;
; RUN: echo
%MyVar = global int 4
%MyIntList = external global { \2 *, int }
%AConst = constant int 123
%Intern1 = internal constant int 52 ;; Intern in both testlink[12].ll
%Intern2 = constant int 12345 ;; Intern in one but not in other
%MyIntListPtr = constant { {\2,int}* } { {\2,int}* %MyIntList }
%MyVarPtr = linkonce global { int * } { int * %MyVar }
constant int 412
implementation
int "foo"(int %blah)
begin
store int %blah, int *%MyVar
%idx = getelementptr { \2 *, int } * %MyIntList, long 0, ubyte 1
store int 12, int* %idx
%ack = load int * %0 ;; Load from the unnamed constant
%fzo = add int %ack, %blah
ret int %fzo
end
declare void "unimp"(float, double)
internal void "testintern"() begin ret void end
void "Testintern"() begin ret void end
internal void "testIntern"() begin ret void end