remove extraneous braces

llvm-svn: 57814
This commit is contained in:
Chris Lattner 2008-10-20 07:36:58 +00:00
parent beca77018a
commit 18ffde822f
1 changed files with 2 additions and 3 deletions

View File

@ -697,11 +697,10 @@ Parser::ExprResult Parser::ParseSimpleAsm() {
ExprResult Result = ParseAsmStringLiteral();
if (Result.isInvalid) {
if (Result.isInvalid)
SkipUntil(tok::r_paren);
} else {
else
MatchRHSPunctuation(tok::r_paren, Loc);
}
return Result;
}