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