Fix Preprocessor/macro_space.c, which failed because the ! token had

identifier info incorrectly set.

llvm-svn: 38674
This commit is contained in:
Chris Lattner 2006-07-05 00:07:54 +00:00
parent 67c3848e4e
commit 27746e476a
1 changed files with 1 additions and 0 deletions

View File

@ -932,6 +932,7 @@ void Lexer::LexTokenInternal(LexerToken &Result) {
LexNextToken:
// New token, can't need cleaning yet.
Result.ClearFlag(LexerToken::NeedsCleaning);
Result.SetIdentifierInfo(0);
// CurPtr - Cache BufferPtr in an automatic variable.
const char *CurPtr = BufferPtr;