return true;
}
- // In C99, the body of the if statement is a scope, even if there is no
- // compound stmt.
+ // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
+ // there is no compound stmt. C90 does not have this clause.
if (getLang().C99) EnterScope(0);
// Read the if condition.
if (Tok.getKind() == tok::kw_else) {
ElseLoc = ConsumeToken();
- // In C99, the body of the if statement is a scope, even if there is no
- // compound stmt.
+ // C99 6.8.4p3 - In C99, the body of the if statement is a scope, even if
+ // there is no compound stmt. C90 does not have this clause.
if (getLang().C99) EnterScope(0);
ElseStmt = ParseStatement();
StmtResult Switch = Actions.StartSwitchStmt(Cond.Val);
+ // C99 6.8.4p3 - In C99, the body of the switch statement is a scope, even if
+ // there is no compound stmt. C90 does not have this clause.
+ if (getLang().C99) EnterScope(0);
+
// Read the body statement.
StmtResult Body = ParseStatement();
+ // Pop the body scope if needed.
+ if (getLang().C99) ExitScope();
+
if (Body.isInvalid) {
Body = Actions.ParseNullStmt(Tok.getLocation());
// FIXME: Remove the case statement list from the Switch statement.
// Parse the condition.
ExprResult Cond = ParseSimpleParenExpression();
+ // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
+ // there is no compound stmt. C90 does not have this clause.
+ if (getLang().C99) EnterScope(0);
+
// Read the body statement.
StmtResult Body = ParseStatement();
+ // Pop the body scope if needed.
+ if (getLang().C99) ExitScope();
+
ExitScope();
if (Cond.isInvalid || Body.isInvalid) return true;
// Start the loop scope.
EnterScope(Scope::BreakScope | Scope::ContinueScope);
+ // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
+ // there is no compound stmt. C90 does not have this clause.
+ if (getLang().C99) EnterScope(0);
+
// Read the body statement.
StmtResult Body = ParseStatement();
+ // Pop the body scope if needed.
+ if (getLang().C99) ExitScope();
+
if (Tok.getKind() != tok::kw_while) {
ExitScope();
Diag(Tok, diag::err_expected_while);
// Match the ')'.
SourceLocation RParenLoc = MatchRHSPunctuation(tok::r_paren, LParenLoc);
+ // C99 6.8.5p5 - In C99, the body of the if statement is a scope, even if
+ // there is no compound stmt. C90 does not have this clause.
+ if (getLang().C99) EnterScope(0);
+
// Read the body statement.
StmtResult Body = ParseStatement();
+ // Pop the body scope if needed.
+ if (getLang().C99) ExitScope();
+
// Leave the for-scope.
ExitScope();