diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-30 06:36:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-30 06:36:43 +0000 |
commit | 09c43d1e4dc7e0d2e80f2158bd1a03f7c793eb4f (patch) | |
tree | 5ef8207fd0c9b2d7212682bc923116b2744ccbe0 | |
parent | ae69e005a9072a30262dfe87360b034d4b8e45f2 (diff) |
accept and ignore two new warning specifiers. -Wno-discard-qual seems easy
to hook up if someone was interested.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70482 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticGroups.td | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/Basic/DiagnosticGroups.td b/include/clang/Basic/DiagnosticGroups.td index 928362ba27..9fdf87482e 100644 --- a/include/clang/Basic/DiagnosticGroups.td +++ b/include/clang/Basic/DiagnosticGroups.td @@ -31,6 +31,7 @@ def Comment : DiagGroup<"comment">; def : DiagGroup<"conversion">; def : DiagGroup<"declaration-after-statement">; def : DiagGroup<"disabled-optimization">; +def : DiagGroup<"discard-qual">; def ExtraTokens : DiagGroup<"extra-tokens">; def FormatExtraArgs : DiagGroup<"format-extra-args">; @@ -63,6 +64,7 @@ def : DiagGroup<"pointer-arith">; def : DiagGroup<"pointer-to-int-cast">; def : DiagGroup<"redundant-decls">; def : DiagGroup<"return-type">; +def : DiagGroup<"sequence-point">; def : DiagGroup<"shadow">; def : DiagGroup<"shorten-64-to-32">; def : DiagGroup<"sign-compare">; |