refactor(jit): Use PublicArguments instead of JitLambda::Argument to call the lambda (uniform calling to ServerLambda and JitLambda)

This commit is contained in:
Quentin Bourgerie
2022-03-02 14:50:02 +01:00
parent 8a52cdaaf5
commit 0d1f041323
20 changed files with 485 additions and 325 deletions

View File

@@ -129,7 +129,8 @@ JitCompilerEngine::buildLambda(llvm::SourceMgr &sm, llvm::StringRef funcName,
auto keySet = std::move(keySetOrErr.value());
return Lambda{this->compilationContext, std::move(lambda), std::move(keySet)};
return Lambda{this->compilationContext, std::move(lambda), std::move(keySet),
*compRes.clientParameters};
}
} // namespace concretelang