summaryrefslogtreecommitdiffstats
path: root/clang/Lex/Lexer.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-10-27 04:53:38 +0000
committerChris Lattner <sabre@nondot.org>2006-10-27 04:53:38 +0000
commit089e51923e291c5842fc204529d1b880dd49896a (patch)
tree4eb92f96cfa18065b40e2eab44946325aa9146de /clang/Lex/Lexer.cpp
parentaded4a977d8fc00546c99f26b8e12780a693d859 (diff)
downloadbcm5719-llvm-089e51923e291c5842fc204529d1b880dd49896a.tar.gz
bcm5719-llvm-089e51923e291c5842fc204529d1b880dd49896a.zip
remove todo
llvm-svn: 39061
Diffstat (limited to 'clang/Lex/Lexer.cpp')
-rw-r--r--clang/Lex/Lexer.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/Lex/Lexer.cpp b/clang/Lex/Lexer.cpp
index fa51cc7e5df..5777f21aa2d 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)
OpenPOWER on IntegriCloud