1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Add bracket that was lost in rL346727 and has been causing buildbot failures for some time.

llvm-svn: 346752
This commit is contained in:
Simon Pilgrim 2018-11-13 11:28:46 +00:00
parent 58a27d4683
commit 53e9a14926

View File

@ -680,7 +680,7 @@ 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>());
(("__anon_expr" + Twine(ExprCount)).str(), std::vector<std::string>());
return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E));
}
return nullptr;