Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Commit 1ee147e

Browse files
committed
Add bracket that was lost in rL346727 and has been causing buildbot failures for some time.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@346752 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent c55ae3f commit 1ee147e

File tree

1 file changed

+1
-1
lines changed
  • examples/Kaleidoscope/BuildingAJIT/Chapter1

1 file changed

+1
-1
lines changed

examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ static std::unique_ptr<FunctionAST> ParseTopLevelExpr(unsigned ExprCount) {
680680
if (auto E = ParseExpression()) {
681681
// Make an anonymous proto.
682682
auto Proto = llvm::make_unique<PrototypeAST>
683-
("__anon_expr" + Twine(ExprCount)).str(), std::vector<std::string>());
683+
(("__anon_expr" + Twine(ExprCount)).str(), std::vector<std::string>());
684684
return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
685685
}
686686
return nullptr;

0 commit comments

Comments
 (0)