[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / ExecutionEngine / OrcLazy / multiple-compile-threads-basic.ll
blobd013e704c6066a3a7a68e07333d11447c3164056
1 ; RUN: lli -jit-kind=orc-lazy -compile-threads=2 -thread-entry hello %s | FileCheck %s
2 ; REQUIRES: thread_support
4 ; CHECK: Hello
6 @.str = private unnamed_addr constant [7 x i8] c"Hello\0A\00", align 1
8 define void @hello() {
9 entry:
10   %call = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([7 x i8], [7 x i8]* @.str, i32 0, i32 0))
11   ret void
14 declare i32 @printf(i8*, ...)
16 define i32 @main(i32 %argc, i8** %argv) {
17 entry:
18   ret i32 0