diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-07 05:05:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-07 05:05:42 +0000 |
commit | 5c34938aa41bbec225c44865ba086a7963b6fc1b (patch) | |
tree | 737768df663a89dccc1de73ea7667aec9bb1a700 | |
parent | 30f95ec27dbd5db3a10b0b553f0077e45bacbbb7 (diff) | |
download | bcm5719-llvm-5c34938aa41bbec225c44865ba086a7963b6fc1b.tar.gz bcm5719-llvm-5c34938aa41bbec225c44865ba086a7963b6fc1b.zip |
fix an out-of-date comment.
llvm-svn: 74894
-rw-r--r-- | clang/lib/Lex/Lexer.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/clang/lib/Lex/Lexer.cpp b/clang/lib/Lex/Lexer.cpp index 6f1043ae735..6dea5b7ddee 100644 --- a/clang/lib/Lex/Lexer.cpp +++ b/clang/lib/Lex/Lexer.cpp @@ -1304,11 +1304,9 @@ unsigned Lexer::isNextPPTokenLParen() { /// LexTokenInternal - This implements a simple C family lexer. It is an /// extremely performance critical piece of code. This assumes that the buffer -/// has a null character at the end of the file. Return true if an error -/// occurred and compilation should terminate, false if normal. This returns a -/// preprocessing token, not a normal token, as such, it is an internal -/// interface. It assumes that the Flags of result have been cleared before -/// calling this. +/// has a null character at the end of the file. This returns a preprocessing +/// token, not a normal token, as such, it is an internal interface. It assumes +/// that the Flags of result have been cleared before calling this. void Lexer::LexTokenInternal(Token &Result) { LexNextToken: // New token, can't need cleaning yet. |