diff options
Diffstat (limited to 'clang/lib/Lex')
| -rw-r--r-- | clang/lib/Lex/PPDirectives.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/clang/lib/Lex/PPDirectives.cpp b/clang/lib/Lex/PPDirectives.cpp index 15477b63d3a..a6e1e7ee2ca 100644 --- a/clang/lib/Lex/PPDirectives.cpp +++ b/clang/lib/Lex/PPDirectives.cpp @@ -1466,7 +1466,11 @@ void Preprocessor::HandleUndefDirective(Token &UndefTok) {    if (!MI->isUsed())      Diag(MI->getDefinitionLoc(), diag::pp_macro_not_used); -   + +  // If the callbacks want to know, tell them about the macro #undef. +  if (Callbacks) +    Callbacks->MacroUndefined(MacroNameTok.getIdentifierInfo(), MI); +    // Free macro definition.    ReleaseMacroInfo(MI);    setMacroInfo(MacroNameTok.getIdentifierInfo(), 0); | 

