diff options
Diffstat (limited to 'clang/lib/Parse/ParseStmt.cpp')
-rw-r--r-- | clang/lib/Parse/ParseStmt.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/lib/Parse/ParseStmt.cpp b/clang/lib/Parse/ParseStmt.cpp index 0ce73cbeb2b..cd80c4c9692 100644 --- a/clang/lib/Parse/ParseStmt.cpp +++ b/clang/lib/Parse/ParseStmt.cpp @@ -1797,10 +1797,8 @@ StmtResult Parser::ParseAsmStatement(bool &msAsm) { ExprResult AsmString(ParseAsmStringLiteral()); if (AsmString.isInvalid()) { - // If the reason we are recovering is because of an improper string - // literal, it makes the most sense just to consume to the ')'. - if (isTokenStringLiteral()) - T.skipToEnd(); + // Consume up to and including the closing paren. + T.skipToEnd(); return StmtError(); } |