diff options
Diffstat (limited to 'clang/lib/Lex/PPDirectives.cpp')
-rw-r--r-- | clang/lib/Lex/PPDirectives.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/Lex/PPDirectives.cpp b/clang/lib/Lex/PPDirectives.cpp index ba321a7f673..52f673c6d3a 100644 --- a/clang/lib/Lex/PPDirectives.cpp +++ b/clang/lib/Lex/PPDirectives.cpp @@ -1402,6 +1402,10 @@ void Preprocessor::HandleDefineDirective(Token &DefineTok) { } setMacroInfo(MacroNameTok.getIdentifierInfo(), MI); + + // If the callbacks want to know, tell them about the macro definition. + if (Callbacks) + Callbacks->MacroDefined(MacroNameTok.getIdentifierInfo(), MI); } /// HandleUndefDirective - Implements #undef. |