diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-01-16 16:52:44 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-01-16 16:52:44 +0000 |
commit | 36845474e217b952c720f4f87923bc78059640c5 (patch) | |
tree | 342c9cde67198f871c8786c31ebbb0565aaf3854 /lib/Lex/PPDirectives.cpp | |
parent | 1f2b07898f66524fd7fe1b177fb0d7c58016e93b (diff) |
[preprocessor] Call the MacroUndefined callback even when the macro was not defined.
Patch by Enea Zaffanella!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/PPDirectives.cpp')
-rw-r--r-- | lib/Lex/PPDirectives.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/Lex/PPDirectives.cpp b/lib/Lex/PPDirectives.cpp index 6796f1c21b..bdca03637d 100644 --- a/lib/Lex/PPDirectives.cpp +++ b/lib/Lex/PPDirectives.cpp @@ -1967,16 +1967,17 @@ void Preprocessor::HandleUndefDirective(Token &UndefTok) { // Okay, we finally have a valid identifier to undef. MacroInfo *MI = getMacroInfo(MacroNameTok.getIdentifierInfo()); + // If the callbacks want to know, tell them about the macro #undef. + // Note: no matter if the macro was defined or not. + if (Callbacks) + Callbacks->MacroUndefined(MacroNameTok, MI); + // If the macro is not defined, this is a noop undef, just return. if (MI == 0) return; if (!MI->isUsed() && MI->isWarnIfUnused()) 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, MI); - if (MI->isWarnIfUnused()) WarnUnusedMacroLocs.erase(MI->getDefinitionLoc()); |