diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-28 00:35:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-28 00:35:39 +0000 |
commit | dd46adef4e839686bf9f22c2f861d1f29c9095d4 (patch) | |
tree | dbe07bf0f874e71c2a50e213dc0eb6f95db2c195 | |
parent | 13e6e0cdd2615194ed89d2cacd3e23c0cec4c424 (diff) |
Accept and ignore a few more -Wflags.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80323 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticGroups.td | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Basic/DiagnosticGroups.td b/include/clang/Basic/DiagnosticGroups.td index fab4614d17..ef3bb4bf54 100644 --- a/include/clang/Basic/DiagnosticGroups.td +++ b/include/clang/Basic/DiagnosticGroups.td @@ -19,7 +19,9 @@ def Implicit : DiagGroup<"implicit", [ // 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 : DiagGroup<"missing-field-initializers">; 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">; |