From 089e51923e291c5842fc204529d1b880dd49896a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 27 Oct 2006 04:53:38 +0000 Subject: [PATCH] remove todo llvm-svn: 39061 --- clang/Lex/Lexer.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/clang/Lex/Lexer.cpp b/clang/Lex/Lexer.cpp index fa51cc7e5df6..5777f21aa2d2 100644 --- a/clang/Lex/Lexer.cpp +++ b/clang/Lex/Lexer.cpp @@ -795,8 +795,6 @@ bool Lexer::SkipBlockComment(LexerToken &Result, const char *CurPtr) { 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)