commit | 17be6aa6a92dab3184f827608c1313fc3684ae21 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Mon Oct 20 07:36:58 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Mon Oct 20 07:36:58 2008 +0000 |
tree | 08a5670c0dc5ba5508dd08355522906212570caa | |
parent | 22f9d26ff026aa9876f5f0e2345ee4b1fc4e044e [diff] [blame] |
remove extraneous braces git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57814 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Parse/Parser.cpp b/lib/Parse/Parser.cpp index a347bf1..697d0f6 100644 --- a/lib/Parse/Parser.cpp +++ b/lib/Parse/Parser.cpp
@@ -697,11 +697,10 @@ ExprResult Result = ParseAsmStringLiteral(); - if (Result.isInvalid) { + if (Result.isInvalid) SkipUntil(tok::r_paren); - } else { + else MatchRHSPunctuation(tok::r_paren, Loc); - } return Result; }