File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -836,9 +836,9 @@ AsmToken AsmLexer::LexToken() {
836836
837837 if (isAtStartOfComment (TokStart)) {
838838 StringRef CommentString = MAI.getCommentString ();
839- // For multi-char comment strings, advance CurPtr only if we matched the full
840- // string. This stops us from accidentally eating the newline if the current
841- // line ends in a single comment char.
839+ // For multi-char comment strings, advance CurPtr only if we matched the
840+ // full string. This stops us from accidentally eating the newline if the
841+ // current line ends in a single comment char.
842842 if (CommentString.size () > 1 &&
843843 StringRef (TokStart, CommentString.size ()) == CommentString) {
844844 CurPtr += CommentString.size () - 1 ;
You can’t perform that action at this time.
0 commit comments