accept and ignore two more gcc warning flags.

llvm-svn: 106472
This commit is contained in:
Chris Lattner 2010-06-21 20:40:48 +00:00
parent 58f3c1f863
commit b5c9a04a2c
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@ def Implicit : DiagGroup<"implicit", [
]>; ]>;
// Empty DiagGroups are recognized by clang but ignored. // Empty DiagGroups are recognized by clang but ignored.
def : DiagGroup<"abi">;
def : DiagGroup<"address">; def : DiagGroup<"address">;
def AddressOfTemporary : DiagGroup<"address-of-temporary">; def AddressOfTemporary : DiagGroup<"address-of-temporary">;
def : DiagGroup<"aggregate-return">; def : DiagGroup<"aggregate-return">;
@ -83,6 +84,7 @@ def SemiBeforeMethodBody : DiagGroup<"semicolon-before-method-body">;
def : DiagGroup<"sequence-point">; def : DiagGroup<"sequence-point">;
def Shadow : DiagGroup<"shadow">; def Shadow : DiagGroup<"shadow">;
def : DiagGroup<"shorten-64-to-32">; def : DiagGroup<"shorten-64-to-32">;
def : DiagGroup<"sign-promo">;
def SignCompare : DiagGroup<"sign-compare">; def SignCompare : DiagGroup<"sign-compare">;
def : DiagGroup<"synth">; def : DiagGroup<"synth">;