llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang Author: Michael Park (mpark) <details> <summary>Changes</summary> The comment describes "If the identifier was typo-corrected", but it doesn't need to have been typo-corrected, just being annotated is enough to retry. --- Full diff: https://github.com/llvm/llvm-project/pull/108143.diff 1 Files Affected: - (modified) clang/lib/Parse/ParseStmt.cpp (+1-1) ``````````diff diff --git a/clang/lib/Parse/ParseStmt.cpp b/clang/lib/Parse/ParseStmt.cpp index bdb3fc051d0b35..9188799fce13e6 100644 --- a/clang/lib/Parse/ParseStmt.cpp +++ b/clang/lib/Parse/ParseStmt.cpp @@ -228,7 +228,7 @@ StmtResult Parser::ParseStatementOrDeclarationAfterAttributes( return StmtError(); } - // If the identifier was typo-corrected, try again. + // If the identifier was annotated, try again. if (Tok.isNot(tok::identifier)) goto Retry; } `````````` </details> https://github.com/llvm/llvm-project/pull/108143 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits