[cfe-commits] r159966 - /cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td

Chad Rosier mcrosier at apple.com
Mon Jul 9 15:59:23 PDT 2012


Author: mcrosier
Date: Mon Jul  9 17:59:22 2012
New Revision: 159966

URL: http://llvm.org/viewvc/llvm-project?rev=159966&view=rev
Log:
Put new warning in r159965 under a flag to appease buildbots.  Someone please
verify this is the correct grouping.

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

Modified: cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td?rev=159966&r1=159965&r2=159966&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Mon Jul  9 17:59:22 2012
@@ -5524,7 +5524,8 @@
   "invalid conversion between ext-vector type %0 and %1">;
 
 def warn_duplicate_attribute : Warning<
-  "attribute %0 is already applied with different parameters">;
+  "attribute %0 is already applied with different parameters">,
+  InGroup<IgnoredAttributes>;
 
 // Type
 def ext_invalid_sign_spec : Extension<"'%0' cannot be signed or unsigned">;





More information about the cfe-commits mailing list