Fix typo assignment

This commit is contained in:
alesapin 2018-10-12 17:52:39 +03:00
parent 17150fd688
commit 72ef357a02

View File

@ -741,7 +741,7 @@ void compileFunctions(ExpressionActions::Actions & actions, const Names & output
} }
else else
{ {
std::shared_ptr<LLVMContext> context = context = std::make_shared<LLVMContext>(); std::shared_ptr<LLVMContext> context = std::make_shared<LLVMContext>();
Stopwatch watch; Stopwatch watch;
fn = std::make_shared<LLVMFunction>(fused[i], context, sample_block); fn = std::make_shared<LLVMFunction>(fused[i], context, sample_block);
size_t used_memory = context->compileAllFunctionsToNativeCode(); size_t used_memory = context->compileAllFunctionsToNativeCode();