[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / ExecutionEngine / OrcLazy / static-library-support.ll
blob304160c7f787f0b9e9ef6644e67e11b98d34341d
1 ; This first line will generate the .o files for the next run line
2 ; RUN: llc -filetype=obj -o %t.o %p/Inputs/basic-object-source.ll
3 ; RUN: llvm-ar r %t.a %t.o
4 ; RUN: lli -jit-kind=orc-lazy -extra-archive %t.a %s
6 declare i32 @foo()
8 define i32 @main() {
9   %r = call i32 @foo( )   ; <i32> [#uses=1]
10   ret i32 %r