aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/MCJIT/hello2.ll
blob: 31a1a6e7a74e856f1bfa79eb922f953b6b9e2323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: %lli %s > /dev/null

@X = global i32 7		; <i32*> [#uses=0]
@msg = internal global [13 x i8] c"Hello World\0A\00"		; <[13 x i8]*> [#uses=1]

declare void @printf([13 x i8]*, ...)

define void @bar() {
	call void ([13 x i8]*, ...) @printf( [13 x i8]* @msg )
	ret void
}

define i32 @main() {
	call void @bar( )
	ret i32 0
}