diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-05-04 03:15:40 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-05-04 03:15:40 +0000 |
commit | 36bd40df7252be541973580e27c7bcbd62e6a605 (patch) | |
tree | 7f34e5173bc70b18dea0591769976aaa75364466 /clang/lib/Frontend/PrintPreprocessedOutput.cpp | |
parent | 410a9e1e1e266ef6efe0ac6eb35b9933535ae33c (diff) | |
download | bcm5719-llvm-36bd40df7252be541973580e27c7bcbd62e6a605.tar.gz bcm5719-llvm-36bd40df7252be541973580e27c7bcbd62e6a605.zip |
Switch PPCallbacks to take the new MacroDefinition instead of MacroDirective*, in order to preserve full information on module macro expansion.
llvm-svn: 236404
Diffstat (limited to 'clang/lib/Frontend/PrintPreprocessedOutput.cpp')
-rw-r--r-- | clang/lib/Frontend/PrintPreprocessedOutput.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Frontend/PrintPreprocessedOutput.cpp b/clang/lib/Frontend/PrintPreprocessedOutput.cpp index b5e5d0aa037..8ca36489ee4 100644 --- a/clang/lib/Frontend/PrintPreprocessedOutput.cpp +++ b/clang/lib/Frontend/PrintPreprocessedOutput.cpp @@ -170,7 +170,7 @@ public: /// MacroUndefined - This hook is called whenever a macro #undef is seen. void MacroUndefined(const Token &MacroNameTok, - const MacroDirective *MD) override; + const MacroDefinition &MD) override; }; } // end anonymous namespace @@ -361,7 +361,7 @@ void PrintPPOutputPPCallbacks::MacroDefined(const Token &MacroNameTok, } void PrintPPOutputPPCallbacks::MacroUndefined(const Token &MacroNameTok, - const MacroDirective *MD) { + const MacroDefinition &MD) { // Only print out macro definitions in -dD mode. if (!DumpDefines) return; |