diff --git a/clang/Parse/ParseExpr.cpp b/clang/Parse/ParseExpr.cpp index e31038cb69f6..d78836bbb28a 100644 --- a/clang/Parse/ParseExpr.cpp +++ b/clang/Parse/ParseExpr.cpp @@ -901,10 +901,8 @@ Parser::ExprResult Parser::ParseStringLiteralExpression() { StringToks.push_back(Tok); ConsumeStringToken(); } while (isTokenStringLiteral()); - - - // If using minimal actions, don't do any semantic analysis of the parsed - // string fragments. + + // Pass the set of string tokens, ready for concatenation, to the actions. return Actions.ParseStringExpr(&StringToks[0], StringToks.size()); }