[cfe-commits] r39061 - /cfe/cfe/trunk/Lex/Lexer.cpp

sabre at cs.uiuc.edu sabre at cs.uiuc.edu
Wed Jul 11 09:27:13 PDT 2007


Author: sabre
Date: Wed Jul 11 11:27:13 2007
New Revision: 39061

URL: http://llvm.org/viewvc/llvm-project?rev=39061&view=rev
Log:
remove todo

Modified:
    cfe/cfe/trunk/Lex/Lexer.cpp

Modified: cfe/cfe/trunk/Lex/Lexer.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/cfe/trunk/Lex/Lexer.cpp?rev=39061&r1=39060&r2=39061&view=diff

==============================================================================
--- cfe/cfe/trunk/Lex/Lexer.cpp (original)
+++ cfe/cfe/trunk/Lex/Lexer.cpp Wed Jul 11 11:27:13 2007
@@ -795,8 +795,6 @@
   while (1) {
     // Skip over all non-interesting characters until we find end of buffer or a
     // (probably ending) '/' character.
-    // TODO: Vectorize this.  Note: memchr on Darwin is slower than this loop.
-    
     if (CurPtr + 24 < BufferEnd) {
       // While not aligned to a 16-byte boundary.
       while (C != '/' && ((intptr_t)CurPtr & 0x0F) != 0)





More information about the cfe-commits mailing list