diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-03-02 19:40:15 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-03-02 19:40:15 +0000 |
commit | 3d7f2bc5a53adeec60c14b2f763cc59545d725f2 (patch) | |
tree | d40c4e35317d580fbed64fdff0cdb51b717e1a05 /lib/Frontend | |
parent | e3ce2656790523fd8c70653ee1ec41e5898f82eb (diff) |
For now, do not output the 'DisplayHint' in plist files.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65861 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend')
-rw-r--r-- | lib/Frontend/PlistDiagnostics.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Frontend/PlistDiagnostics.cpp b/lib/Frontend/PlistDiagnostics.cpp index 4a87d5d7e5..d9863448ca 100644 --- a/lib/Frontend/PlistDiagnostics.cpp +++ b/lib/Frontend/PlistDiagnostics.cpp @@ -126,11 +126,14 @@ static void ReportDiag(llvm::raw_ostream& o, const PathDiagnosticPiece& P, Indent(o, indent) << "<string>" << P.getString() << "</string>\n"; // Output the hint. +#if 0 + // Disable the display hint until we clear up its meaning. Indent(o, indent) << "<key>displayhint</key>\n"; Indent(o, indent) << "<string>" << (P.getDisplayHint() == PathDiagnosticPiece::Above ? "above" : "below") << "</string>\n"; +#endif // Finish up. |