[cfe-commits] r137816 - /cfe/trunk/include/clang/Basic/DiagnosticFrontendKinds.td

Jordy Rose jediknil at belkadan.com
Tue Aug 16 23:25:12 PDT 2011


Author: jrose
Date: Wed Aug 17 01:25:12 2011
New Revision: 137816

URL: http://llvm.org/viewvc/llvm-project?rev=137816&view=rev
Log:
Hook up -W[no-]analyzer-incompatible-plugin to new warning, and unbreak buildbot.

Modified:
    cfe/trunk/include/clang/Basic/DiagnosticFrontendKinds.td

Modified: cfe/trunk/include/clang/Basic/DiagnosticFrontendKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticFrontendKinds.td?rev=137816&r1=137815&r2=137816&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticFrontendKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticFrontendKinds.td Wed Aug 17 01:25:12 2011
@@ -294,7 +294,8 @@
 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'">;
 }





More information about the cfe-commits mailing list