summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorAlp Toker <alp@nuanti.com>2014-06-16 13:56:47 +0000
committerAlp Toker <alp@nuanti.com>2014-06-16 13:56:47 +0000
commit0860a908c0094e3d9d780edba99de486daa77963 (patch)
treebe3b433f1d78b4dcb8172ca6b608085b532a53a5 /utils
parent336ab2f6f1ade86c0b109d2feb8c4db7c31b5ca4 (diff)
Use the ShowInSystemHeader bit consistently for all diagnostics
By describing system header suppressions directly in tablegen we eliminate special cases in getDiagnosticSeverity(). Dropping the reliance on builtin diagnostic classes when mapping also gets us closer to the goal of reusing the diagnostic machinery for custom diagnostics. No change in functionality. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211023 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/ClangDiagnosticsEmitter.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/TableGen/ClangDiagnosticsEmitter.cpp b/utils/TableGen/ClangDiagnosticsEmitter.cpp
index 76b484e783..e517755417 100644
--- a/utils/TableGen/ClangDiagnosticsEmitter.cpp
+++ b/utils/TableGen/ClangDiagnosticsEmitter.cpp
@@ -571,8 +571,7 @@ void EmitClangDiagsDefs(RecordKeeper &Records, raw_ostream &OS,
else
OS << ", false";
- // Default warning show in system header bit.
- if (R.getValueAsBit("WarningShowInSystemHeader"))
+ if (R.getValueAsBit("ShowInSystemHeader"))
OS << ", true";
else
OS << ", false";