aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/OrcJIT/hello2.ll
blob: 9e7cf5b9af84d9f5acb0289f44e94b519e6467aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: %lli -use-orcmcjit %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
}