From b5c9a04a2cbe5753c3567ba5e774f2cf0071d6bb Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 21 Jun 2010 20:40:48 +0000 Subject: [PATCH] accept and ignore two more gcc warning flags. llvm-svn: 106472 --- clang/include/clang/Basic/DiagnosticGroups.td | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clang/include/clang/Basic/DiagnosticGroups.td b/clang/include/clang/Basic/DiagnosticGroups.td index 1a7b7ec136bb..566fc9b96491 100644 --- a/clang/include/clang/Basic/DiagnosticGroups.td +++ b/clang/include/clang/Basic/DiagnosticGroups.td @@ -17,6 +17,7 @@ def Implicit : DiagGroup<"implicit", [ ]>; // 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 SemiBeforeMethodBody : DiagGroup<"semicolon-before-method-body">; 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">;