diff options
| author | Lang Hames <lhames@gmail.com> | 2020-01-21 20:35:40 -0800 |
|---|---|---|
| committer | Hans Wennborg <hans@chromium.org> | 2020-01-29 21:50:17 +0100 |
| commit | 46f6f03839e302364111f4532b9a098e9a0a9d21 (patch) | |
| tree | e9bc15c692a6dcbac59135c45be9509bb69093b9 /llvm/examples/SpeculativeJIT/SpeculativeJIT.cpp | |
| parent | 32056b4eb87258884074f7f635bccd40fc44852c (diff) | |
| download | bcm5719-llvm-46f6f03839e302364111f4532b9a098e9a0a9d21.tar.gz bcm5719-llvm-46f6f03839e302364111f4532b9a098e9a0a9d21.zip | |
[ORC] Update examples to incorporate changes in ce2207abaf9.
This should fix the builders that were failing due to broken JIT examples
after ce2207abaf9.
(cherry picked from commit 98e55477558a823b1045b54d5a09681a3c0b819a)
Diffstat (limited to 'llvm/examples/SpeculativeJIT/SpeculativeJIT.cpp')
| -rw-r--r-- | llvm/examples/SpeculativeJIT/SpeculativeJIT.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/examples/SpeculativeJIT/SpeculativeJIT.cpp b/llvm/examples/SpeculativeJIT/SpeculativeJIT.cpp index f4cfb7403db..3828e0a5f82 100644 --- a/llvm/examples/SpeculativeJIT/SpeculativeJIT.cpp +++ b/llvm/examples/SpeculativeJIT/SpeculativeJIT.cpp @@ -104,7 +104,7 @@ private: : ES(std::move(ES)), DL(std::move(DL)), MainJD(this->ES->createJITDylib("<main>")), LCTMgr(std::move(LCTMgr)), CompileLayer(*this->ES, ObjLayer, - ConcurrentIRCompiler(std::move(JTMB))), + std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))), S(Imps, *this->ES), SpeculateLayer(*this->ES, CompileLayer, S, Mangle, BlockFreqQuery()), CODLayer(*this->ES, SpeculateLayer, *this->LCTMgr, |

