diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-17 18:39:57 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-17 18:39:57 +0000 |
commit | 9e8829be9292c4674653d0c54428cdb3f073929f (patch) | |
tree | ed86ca001f32bfbeed39692ca200bc9c75b993a6 /Driver/HTMLDiagnostics.cpp | |
parent | b7478148953ba8925e64e6f4b5b35442969e8377 (diff) |
Temporarily disable macro expansion in the HTML output of HTMLDiagnostics to
avoid corrupting Preprocessor state. Working on a fix.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49864 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/HTMLDiagnostics.cpp')
-rw-r--r-- | Driver/HTMLDiagnostics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Driver/HTMLDiagnostics.cpp b/Driver/HTMLDiagnostics.cpp index 9b7d4f5dac..78381f9070 100644 --- a/Driver/HTMLDiagnostics.cpp +++ b/Driver/HTMLDiagnostics.cpp @@ -124,7 +124,7 @@ void HTMLDiagnostics::HandlePathDiagnostic(const PathDiagnostic& D) { if (PP) { html::SyntaxHighlight(R, FileID, *PP); - html::HighlightMacros(R, FileID, *PP); + // html::HighlightMacros(R, FileID, *PP); } // Get the full directory name of the analyzed file. |