[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / ExecutionEngine / MCJIT / hello2.ll
blob48806682a38adaf94efc8621f598222e0b600208
1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
4 @X = global i32 7               ; <ptr> [#uses=0]
5 @msg = internal global [13 x i8] c"Hello World\0A\00"           ; <ptr> [#uses=1]
7 declare void @printf(ptr, ...)
9 define void @bar() {
10         call void (ptr, ...) @printf( ptr @msg )
11         ret void
14 define i32 @main() {
15         call void @bar( )
16         ret i32 0