[cfe-commits] r38673 - /cfe/cfe/trunk/Driver/PrintPreprocessedOutput.cpp

sabre at cs.uiuc.edu sabre at cs.uiuc.edu
Wed Jul 11 09:23:42 PDT 2007


Author: sabre
Date: Wed Jul 11 11:23:42 2007
New Revision: 38673

URL: http://llvm.org/viewvc/llvm-project?rev=38673&view=rev
Log:
Cleanup some obsolete comments.

Modified:
    cfe/cfe/trunk/Driver/PrintPreprocessedOutput.cpp

Modified: cfe/cfe/trunk/Driver/PrintPreprocessedOutput.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/cfe/trunk/Driver/PrintPreprocessedOutput.cpp?rev=38673&r1=38672&r2=38673&view=diff

==============================================================================
--- cfe/cfe/trunk/Driver/PrintPreprocessedOutput.cpp (original)
+++ cfe/cfe/trunk/Driver/PrintPreprocessedOutput.cpp Wed Jul 11 11:23:42 2007
@@ -285,11 +285,7 @@
   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()) {





More information about the cfe-commits mailing list