[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / ExecutionEngine / OrcLazy / basic-object-file-loading.ll
blob9dc74d5241bb528523ad1271351529627f856ed8
1 ; RUN: llc -filetype=obj -o %t %p/Inputs/foo-return-i32-0.ll
2 ; RUN: lli -jit-kind=orc-lazy -extra-object %t %s
4 ; Check that we can load an object file and call a function in it.
6 declare i32 @foo()
8 define i32 @main(i32 %argc, i8** %argv) {
9 entry:
10   %0 = call i32 @foo()
11   ret i32 %0