This ensures that we're building and testing the CompileOnDemand layer, at least
in a basic way.
Currently x86-64 only, and with limited to no library calls enabled (depending
on host platform). Patches welcome. ;)
To enable access to the lazy JIT, this patch replaces the '-use-orcmcjit' lli
option with a new option:
'-jit-kind={ mcjit | orc-mcjit | orc-lazy }'.
All regression tests are updated to use the new option, and one trivial test of
the new lazy JIT is added.
llvm-svn: 233182
8 lines
97 B
LLVM
8 lines
97 B
LLVM
declare i32 @FC()
|
|
|
|
define i32 @FB() {
|
|
%r = call i32 @FC( ) ; <i32> [#uses=1]
|
|
ret i32 %r
|
|
}
|
|
|