
MCJIT served well as the default JIT engine in lli for a long time, but the code is getting old and maintenance efforts don't seem to be in sight. In the meantime Orc became mature enough to fill that gap. The newly added greddy mode is very similar to the execution model of MCJIT. It should work as a drop-in replacement for common JIT tasks. Reviewed By: lhames Differential Revision: https://reviews.llvm.org/D98931
15 lines
377 B
LLVM
15 lines
377 B
LLVM
; RUN: %lli -jit-kind=mcjit %s > /dev/null
|
|
; RUN: %lli %s > /dev/null
|
|
|
|
define i32 @foo(i32 %X, i32 %Y, double %A) {
|
|
%cond212 = fcmp une double %A, 1.000000e+00 ; <i1> [#uses=1]
|
|
%cast110 = zext i1 %cond212 to i32 ; <i32> [#uses=1]
|
|
ret i32 %cast110
|
|
}
|
|
|
|
define i32 @main() {
|
|
%reg212 = call i32 @foo( i32 0, i32 1, double 1.000000e+00 ) ; <i32> [#uses=1]
|
|
ret i32 %reg212
|
|
}
|
|
|