forked from OSchip/llvm-project
[ORC] Update examples to incorporate changes in ce2207abaf
.
This should fix the builders that were failing due to broken JIT examples
after ce2207abaf
.
This commit is contained in:
parent
debd2dcd09
commit
98e5547755
|
@ -45,7 +45,8 @@ public:
|
|||
KaleidoscopeJIT(JITTargetMachineBuilder JTMB, DataLayout DL)
|
||||
: ObjectLayer(ES,
|
||||
[]() { return std::make_unique<SectionMemoryManager>(); }),
|
||||
CompileLayer(ES, ObjectLayer, ConcurrentIRCompiler(std::move(JTMB))),
|
||||
CompileLayer(ES, ObjectLayer,
|
||||
std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
|
||||
DL(std::move(DL)), Mangle(ES, this->DL),
|
||||
Ctx(std::make_unique<LLVMContext>()),
|
||||
MainJD(ES.createJITDylib("<main>")) {
|
||||
|
|
|
@ -51,7 +51,8 @@ public:
|
|||
KaleidoscopeJIT(JITTargetMachineBuilder JTMB, DataLayout DL)
|
||||
: ObjectLayer(ES,
|
||||
[]() { return std::make_unique<SectionMemoryManager>(); }),
|
||||
CompileLayer(ES, ObjectLayer, ConcurrentIRCompiler(std::move(JTMB))),
|
||||
CompileLayer(ES, ObjectLayer,
|
||||
std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
|
||||
OptimizeLayer(ES, CompileLayer, optimizeModule), DL(std::move(DL)),
|
||||
Mangle(ES, this->DL), Ctx(std::make_unique<LLVMContext>()),
|
||||
MainJD(ES.createJITDylib("<main>")) {
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue