diff options
author | Chris Lattner <sabre@nondot.org> | 2008-12-12 06:35:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-12-12 06:35:28 +0000 |
commit | 10da53c60c3ca7c6d976048c854d27ece193ed89 (patch) | |
tree | af932f776e4cde1df15619af2fee8c3004db32f9 | |
parent | c0081db332c8ba7c08715ed8699ad957abaa0af3 (diff) | |
download | bcm5719-llvm-10da53c60c3ca7c6d976048c854d27ece193ed89.tar.gz bcm5719-llvm-10da53c60c3ca7c6d976048c854d27ece193ed89.zip |
use smarter error recovery for do/while.
llvm-svn: 60933
-rw-r--r-- | clang/include/clang/Parse/Parser.h | 3 | ||||
-rw-r--r-- | clang/lib/Parse/ParseStmt.cpp | 11 |
2 files changed, 9 insertions, 5 deletions
diff --git a/clang/include/clang/Parse/Parser.h b/clang/include/clang/Parse/Parser.h index bb0a76e4ea0..fafaac59543 100644 --- a/clang/include/clang/Parse/Parser.h +++ b/clang/include/clang/Parse/Parser.h @@ -640,7 +640,8 @@ private: OwningStmtResult ParseDefaultStatement(); OwningStmtResult ParseCompoundStatement(bool isStmtExpr = false); OwningStmtResult ParseCompoundStatementBody(bool isStmtExpr = false); - bool ParseParenExprOrCondition(OwningExprResult &CondExp); + bool ParseParenExprOrCondition(OwningExprResult &CondExp, + bool OnlyAllowCondition = false); OwningStmtResult ParseIfStatement(); OwningStmtResult ParseSwitchStatement(); OwningStmtResult ParseWhileStatement(); diff --git a/clang/lib/Parse/ParseStmt.cpp b/clang/lib/Parse/ParseStmt.cpp index 45092aa612f..ed4563bb6fd 100644 --- a/clang/lib/Parse/ParseStmt.cpp +++ b/clang/lib/Parse/ParseStmt.cpp @@ -416,7 +416,7 @@ Parser::OwningStmtResult Parser::ParseCompoundStatementBody(bool isStmtExpr) { /// ParseParenExprOrCondition: /// [C ] '(' expression ')' -/// [C++] '(' condition ')' +/// [C++] '(' condition ')' [not allowed if OnlyAllowCondition=true] /// /// This function parses and performs error recovery on the specified condition /// or expression (depending on whether we're in C++ or C mode). This function @@ -425,7 +425,8 @@ Parser::OwningStmtResult Parser::ParseCompoundStatementBody(bool isStmtExpr) { /// should try to recover harder. It returns false if the condition is /// successfully parsed. Note that a successful parse can still have semantic /// errors in the condition. -bool Parser::ParseParenExprOrCondition(OwningExprResult &CondExp) { +bool Parser::ParseParenExprOrCondition(OwningExprResult &CondExp, + bool OnlyAllowCondition) { SourceLocation LParenLoc = ConsumeParen(); if (getLang().CPlusPlus) @@ -769,8 +770,10 @@ Parser::OwningStmtResult Parser::ParseDoStatement() { return StmtError(); } - // Parse the condition. - OwningExprResult Cond(ParseSimpleParenExpression()); + // Parse the parenthesized condition. + OwningExprResult Cond(Actions); + ParseParenExprOrCondition(Cond, true); + DoScope.Exit(); if (Cond.isInvalid() || Body.isInvalid()) |