[cfe-commits] r106472 - /cfe/trunk/include/clang/Basic/DiagnosticGroups.td
Chris Lattner
sabre at nondot.org
Mon Jun 21 13:40:48 PDT 2010
Author: lattner
Date: Mon Jun 21 15:40:48 2010
New Revision: 106472
URL: http://llvm.org/viewvc/llvm-project?rev=106472&view=rev
Log:
accept and ignore two more gcc warning flags.
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=106472&r1=106471&r2=106472&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticGroups.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticGroups.td Mon Jun 21 15:40:48 2010
@@ -17,6 +17,7 @@
]>;
// Empty DiagGroups are recognized by clang but ignored.
+def : DiagGroup<"abi">;
def : DiagGroup<"address">;
def AddressOfTemporary : DiagGroup<"address-of-temporary">;
def : DiagGroup<"aggregate-return">;
@@ -83,6 +84,7 @@
def : DiagGroup<"sequence-point">;
def Shadow : DiagGroup<"shadow">;
def : DiagGroup<"shorten-64-to-32">;
+def : DiagGroup<"sign-promo">;
def SignCompare : DiagGroup<"sign-compare">;
def : DiagGroup<"synth">;
More information about the cfe-commits
mailing list