Cleanup some obsolete comments.

llvm-svn: 38673
This commit is contained in:
Chris Lattner
2006-07-04 23:24:26 +00:00
parent d3a15f7f4e
commit 67c3848e4e

View File

@@ -285,11 +285,7 @@ void clang::DoPrintPreprocessedInput(Preprocessor &PP) {
do {
PP.Lex(Tok);
// If this token is at the start of a line. Emit the \n and indentation.
// FIXME: this shouldn't use the isAtStartOfLine flag. This should use a
// "newline callback" from the lexer.
// FIXME: For some tests, this fails just because there is no col# info from
// macro expansions!
// If this token is at the start of a line, emit newlines if needed.
if (Tok.isAtStartOfLine()) {
HandleFirstTokOnLine(Tok, PP);
} else if (Tok.hasLeadingSpace()) {