mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
95f870ece4
- Also, switch tests to not using llvm-as. They run 20% faster now, not that it matters. llvm-svn: 118952
18 lines
330 B
LLVM
18 lines
330 B
LLVM
; 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
|
|
}
|
|
|