[InstCombine] Signed saturation patterns
[llvm-core.git] / test / ExecutionEngine / OrcLazy / single-function-call.ll
blobfba52026660da2b8b9188be257fbf9338ae0b48a
1 ; RUN: lli -jit-kind=orc-lazy %s
3 ; Basic sanity check: We can make a call inside lazily JIT'd code.
4 ; Compared to minimal.ll, this demonstrates that we can call through a stub.
6 define i32 @foo() {
7 entry:
8   ret i32 0
11 define i32 @main(i32 %argc, i8** nocapture readnone %argv) {
12 entry:
13   %0 = call i32() @foo()
14   ret i32 %0