remove todo

llvm-svn: 39061
This commit is contained in:
Chris Lattner 2006-10-27 04:53:38 +00:00
parent aded4a977d
commit 089e51923e
1 changed files with 0 additions and 2 deletions

View File

@ -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)