diff options
author | Lang Hames <lhames@gmail.com> | 2018-09-26 05:08:29 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2018-09-26 05:08:29 +0000 |
commit | d8048675f4aad4ea216ad631e6612ae4de1bda87 (patch) | |
tree | 4ba5811c53eacebe22b23ef050da282ada3359df /llvm/test/ExecutionEngine/OrcLazy | |
parent | 12938cf89968ae3795ba1c249a1ae9b3f09d493a (diff) | |
download | bcm5719-llvm-d8048675f4aad4ea216ad631e6612ae4de1bda87.tar.gz bcm5719-llvm-d8048675f4aad4ea216ad631e6612ae4de1bda87.zip |
[ORC] Update CompileOnDemandLayer2 to use the new lazyReexports mechanism
for lazy compilation, rather than a callback manager.
The new mechanism does not block compile threads, and does not require
function bodies to be renamed.
Future modifications should allow laziness on a per-module basis to work
without any modification of the input module.
llvm-svn: 343065
Diffstat (limited to 'llvm/test/ExecutionEngine/OrcLazy')
-rw-r--r-- | llvm/test/ExecutionEngine/OrcLazy/multiple-compile-threads-basic.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/ExecutionEngine/OrcLazy/multiple-compile-threads-basic.ll b/llvm/test/ExecutionEngine/OrcLazy/multiple-compile-threads-basic.ll index a53f23b100c..24379128cc7 100644 --- a/llvm/test/ExecutionEngine/OrcLazy/multiple-compile-threads-basic.ll +++ b/llvm/test/ExecutionEngine/OrcLazy/multiple-compile-threads-basic.ll @@ -1,4 +1,4 @@ -; RUN: lli -jit-kind=orc-lazy -compile-threads=5 -thread-entry hello %s | FileCheck %s +; RUN: lli -jit-kind=orc-lazy -compile-threads=2 -thread-entry hello %s | FileCheck %s ; ; CHECK: Hello |