update comment

llvm-svn: 39151
This commit is contained in:
Chris Lattner 2006-11-09 06:34:47 +00:00
parent 697e5d692b
commit 08f2791bdc
1 changed files with 2 additions and 4 deletions

View File

@ -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());
}