forked from OSchip/llvm-project
Fix Preprocessor/macro_space.c, which failed because the ! token had
identifier info incorrectly set. llvm-svn: 38674
This commit is contained in:
parent
67c3848e4e
commit
27746e476a
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue