aboutsummaryrefslogtreecommitdiff
path: root/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp')
-rw-r--r--examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp b/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp
index 5a66b367c27..76162ae444d 100644
--- a/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp
+++ b/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp
@@ -679,9 +679,8 @@ static std::unique_ptr<FunctionAST> ParseDefinition() {
static std::unique_ptr<FunctionAST> ParseTopLevelExpr(unsigned ExprCount) {
if (auto E = ParseExpression()) {
// Make an anonymous proto.
- auto Proto = llvm::make_unique<PrototypeAST>(("__anon_expr" +
- Twine(ExprCount)).str(),
- std::vector<std::string>());
+ auto Proto = llvm::make_unique<PrototypeAST>
+ ("__anon_expr" + Twine(ExprCount)).str(), std::vector<std::string>());
return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
}
return nullptr;
@@ -1157,7 +1156,7 @@ static void HandleTopLevelExpression() {
// Get the anonymous expression's JITSymbol.
auto Sym =
- ExitOnErr(TheJIT->lookup(("__anon_expr" + Twine(ExprCount)).str()));
+ ExitOnErr(TheJIT->lookup(("__anon_expr" + Twine(ExprCount)).str()));
auto *FP = (double (*)())(intptr_t)Sym.getAddress();
assert(FP && "Failed to codegen function");