diff options
author | Jordy Rose <jediknil@belkadan.com> | 2011-08-17 06:25:12 +0000 |
---|---|---|
committer | Jordy Rose <jediknil@belkadan.com> | 2011-08-17 06:25:12 +0000 |
commit | 8a01087664cc78c0572c985949b9ebf3c184dbee (patch) | |
tree | 1ec8d90cc17f3215f046c36bfd9ffbf9a11660aa | |
parent | b7b0608c3aeee3eb9f14520eb7eff159b855a34b (diff) |
Hook up -W[no-]analyzer-incompatible-plugin to new warning, and unbreak buildbot.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137816 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticFrontendKinds.td | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticFrontendKinds.td b/include/clang/Basic/DiagnosticFrontendKinds.td index 920aa36c44..7ca1f30bb1 100644 --- a/include/clang/Basic/DiagnosticFrontendKinds.td +++ b/include/clang/Basic/DiagnosticFrontendKinds.td @@ -294,7 +294,8 @@ def warn_unknown_warning_specifier : Warning< def warn_unknown_analyzer_checker : Warning< "no analyzer checkers are associated with '%0'">; def warn_incompatible_analyzer_plugin_api : Warning< - "checker plugin '%0' is not compatible with this version of the analyzer">; + "checker plugin '%0' is not compatible with this version of the analyzer">, + InGroup<DiagGroup<"analyzer-incompatible-plugin"> >; def note_incompatible_analyzer_plugin_api : Note< "current API version is '%0', but plugin was compiled with version '%1'">; } |