From 3d7f2bc5a53adeec60c14b2f763cc59545d725f2 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Mon, 2 Mar 2009 19:40:15 +0000 Subject: [PATCH] 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 --- lib/Frontend/PlistDiagnostics.cpp | 3 +++ 1 file changed, 3 insertions(+) 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) << "" << P.getString() << "\n"; // Output the hint. +#if 0 + // Disable the display hint until we clear up its meaning. Indent(o, indent) << "displayhint\n"; Indent(o, indent) << "" << (P.getDisplayHint() == PathDiagnosticPiece::Above ? "above" : "below") << "\n"; +#endif // Finish up. -- 2.50.1