aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/hello2.ll
blob: 48d7688bcc62b399ceb935c4d7928af7106d1e48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

%X = global int 7
%msg = internal global [13 x sbyte] c"Hello World\0A\00"


implementation

declare void %printf([13 x sbyte]*)

void %bar() {
  call void %printf([13 x sbyte]* %msg)
  ret void 
}

int %main() {
        call void %bar()
        ret int 0
}