diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-12 01:15:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-12 01:15:46 +0000 |
commit | 50c9050037a1388072f8efaed98e1dc8050bedb4 (patch) | |
tree | 3a2a64f5271516e92fa7b8c16d13f5a01336dfd9 /clang/Driver/RewriteMacros.cpp | |
parent | 5d3e26a4f68c38fd98014a5344e6bb4095c38eac (diff) | |
download | bcm5719-llvm-50c9050037a1388072f8efaed98e1dc8050bedb4.tar.gz bcm5719-llvm-50c9050037a1388072f8efaed98e1dc8050bedb4.zip |
Change how raw lexers are handled: instead of creating them and then
using LexRawToken, create one and use LexFromRawLexer. This avoids
twiddling the RawLexer flag around and simplifies some code (even
speeding raw lexing up a tiny bit).
This change also improves the token paster to use a Lexer on the stack
instead of new/deleting it.
llvm-svn: 57393
Diffstat (limited to 'clang/Driver/RewriteMacros.cpp')
-rw-r--r-- | clang/Driver/RewriteMacros.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/Driver/RewriteMacros.cpp b/clang/Driver/RewriteMacros.cpp index 5106367839c..89310140813 100644 --- a/clang/Driver/RewriteMacros.cpp +++ b/clang/Driver/RewriteMacros.cpp @@ -73,7 +73,7 @@ static void LexRawTokensFromMainFile(Preprocessor &PP, Token RawTok; do { - RawLex.LexRawToken(RawTok); + RawLex.LexFromRawLexer(RawTok); // If we have an identifier with no identifier info for our raw token, look // up the indentifier info. This is important for equality comparison of |