diff options
Diffstat (limited to 'clang/lib/Interpreter/Interpreter.cpp')
-rw-r--r-- | clang/lib/Interpreter/Interpreter.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/clang/lib/Interpreter/Interpreter.cpp b/clang/lib/Interpreter/Interpreter.cpp index 2f11065..98fc0a5 100644 --- a/clang/lib/Interpreter/Interpreter.cpp +++ b/clang/lib/Interpreter/Interpreter.cpp @@ -373,8 +373,11 @@ Interpreter::Interpreter(std::unique_ptr<CompilerInstance> Instance, auto LLVMCtx = std::make_unique<llvm::LLVMContext>(); TSCtx = std::make_unique<llvm::orc::ThreadSafeContext>(std::move(LLVMCtx)); - Act = std::make_unique<IncrementalAction>(*CI, *TSCtx->getContext(), ErrOut, - *this, std::move(Consumer)); + Act = TSCtx->withContextDo([&](llvm::LLVMContext *Ctx) { + return std::make_unique<IncrementalAction>(*CI, *Ctx, ErrOut, *this, + std::move(Consumer)); + }); + if (ErrOut) return; CI->ExecuteAction(*Act); @@ -495,10 +498,10 @@ Interpreter::createWithCUDA(std::unique_ptr<CompilerInstance> CI, std::unique_ptr<Interpreter> Interp = std::move(*InterpOrErr); llvm::Error Err = llvm::Error::success(); - llvm::LLVMContext &LLVMCtx = *Interp->TSCtx->getContext(); - auto DeviceAct = - std::make_unique<IncrementalAction>(*DCI, LLVMCtx, Err, *Interp); + auto DeviceAct = Interp->TSCtx->withContextDo([&](llvm::LLVMContext *Ctx) { + return std::make_unique<IncrementalAction>(*DCI, *Ctx, Err, *Interp); + }); if (Err) return std::move(Err); |