aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-07-09 22:59:22 +0000
committerChad Rosier <mcrosier@apple.com>2012-07-09 22:59:22 +0000
commitd521b700ff6b6c7e1ac49e45fb37fa93ae22dcb9 (patch)
tree3aa4ca09748bfcb6562c22a9c84eea84cf32d3a4 /include/clang/Basic
parent0df579ec000ffe52e0cddf1e7ee5e50a55256835 (diff)
Put new warning in r159965 under a flag to appease buildbots. Someone please
verify this is the correct grouping. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159966 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic')
-rw-r--r--include/clang/Basic/DiagnosticSemaKinds.td3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td
index 52641b86d6..bf5e3ac8a6 100644
--- a/include/clang/Basic/DiagnosticSemaKinds.td
+++ b/include/clang/Basic/DiagnosticSemaKinds.td
@@ -5524,7 +5524,8 @@ def err_invalid_conversion_between_ext_vectors : Error<
"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">;