"Remove the 'else' since the code is fallthrough after it." - suggestion by Chris.

llvm-svn: 54952
This commit is contained in:
Argyrios Kyrtzidis 2008-08-18 22:49:40 +00:00
parent 927b5a5ac2
commit 22fc2665e6
1 changed files with 2 additions and 2 deletions

View File

@ -1017,8 +1017,8 @@ bool Parser::ParseExpressionList(ExprListTy &Exprs, CommaLocsTy &CommaLocs) {
ExprResult Expr = ParseAssignmentExpression();
if (Expr.isInvalid)
return true;
else
Exprs.push_back(Expr.Val);
Exprs.push_back(Expr.Val);
if (Tok.isNot(tok::comma))
return false;