]> granicus.if.org Git - clang/commitdiff
Hook up -W[no-]analyzer-incompatible-plugin to new warning, and unbreak buildbot.
authorJordy Rose <jediknil@belkadan.com>
Wed, 17 Aug 2011 06:25:12 +0000 (06:25 +0000)
committerJordy Rose <jediknil@belkadan.com>
Wed, 17 Aug 2011 06:25:12 +0000 (06:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137816 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticFrontendKinds.td

index 920aa36c4411b885e5afdd1be0766139e3e8d5d0..7ca1f30bb1d6a1cb80167be5993dd4354432b97a 100644 (file)
@@ -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'">;
 }