[cfe-commits] r80323 - /cfe/trunk/include/clang/Basic/DiagnosticGroups.td
Chris Lattner
sabre at nondot.org
Thu Aug 27 17:35:39 PDT 2009
Author: lattner
Date: Thu Aug 27 19:35:39 2009
New Revision: 80323
URL: http://llvm.org/viewvc/llvm-project?rev=80323&view=rev
Log:
Accept and ignore a few more -Wflags.
Modified:
cfe/trunk/include/clang/Basic/DiagnosticGroups.td
Modified: cfe/trunk/include/clang/Basic/DiagnosticGroups.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticGroups.td?rev=80323&r1=80322&r2=80323&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticGroups.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticGroups.td Thu Aug 27 19:35:39 2009
@@ -19,7 +19,9 @@
// Empty DiagGroups: these are recognized by clang but ignored.
+def : DiagGroup<"address">;
def : DiagGroup<"aggregate-return">;
+def : DiagGroup<"attributes">;
def : DiagGroup<"bad-function-cast">;
def : DiagGroup<"cast-align">;
def : DiagGroup<"cast-qual">;
@@ -56,6 +58,7 @@
def NonNull : DiagGroup<"nonnull">;
def : DiagGroup<"nonportable-cfstrings">;
def : DiagGroup<"old-style-definition">;
+def : DiagGroup<"overflow">;
def : DiagGroup<"packed">;
def Parentheses : DiagGroup<"parentheses">;
def PointerArith : DiagGroup<"pointer-arith">;
More information about the cfe-commits
mailing list