]> granicus.if.org Git - clang/commitdiff
The TokenLexer may encounter annotations if the parser enters them using Preprocessor...
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Fri, 22 May 2009 21:09:31 +0000 (21:09 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Fri, 22 May 2009 21:09:31 +0000 (21:09 +0000)
So check for annotation before using the Token's IdentifierInfo.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72278 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Lex/TokenLexer.cpp

index af56af6bd395985f554dc501710984380ce44799..f1af42aea5172512d4e9677bdb2e497ae06c64bb 100644 (file)
@@ -342,9 +342,10 @@ void TokenLexer::Lex(Token &Tok) {
   }
   
   // Handle recursive expansion!
-  if (IdentifierInfo *II = Tok.getIdentifierInfo()) {
+  if (!Tok.isAnnotation() && Tok.getIdentifierInfo() != 0) {
     // Change the kind of this identifier to the appropriate token kind, e.g.
     // turning "for" into a keyword.
+    IdentifierInfo *II = Tok.getIdentifierInfo();
     Tok.setKind(II->getTokenID());
     
     // If this identifier was poisoned and from a paste, emit an error.  This