[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / ExecutionEngine / OrcLazy / multiple-compile-threads-basic.ll
blob074c5f490b42939e1c70ef15c51a75e2dc18fc8b
1 ; RUN: lli -jit-kind=orc-lazy -compile-threads=2 -thread-entry hello %s | FileCheck %s
2 ; REQUIRES: thread_support
4 ; FIXME: Something hangs here.
5 ; UNSUPPORTED: use_msan_with_origins
7 ; CHECK: Hello
9 @.str = private unnamed_addr constant [7 x i8] c"Hello\0A\00", align 1
11 define void @hello() {
12 entry:
13   %call = call i32 (ptr, ...) @printf(ptr @.str)
14   ret void
17 declare i32 @printf(ptr, ...)
19 define i32 @main(i32 %argc, ptr %argv) {
20 entry:
21   ret i32 0