diff options
author | Ryan Flynn <pizza@parseerror.com> | 2009-08-08 19:18:23 +0000 |
---|---|---|
committer | Ryan Flynn <pizza@parseerror.com> | 2009-08-08 19:18:23 +0000 |
commit | 8045c7393bc83060f812d0f7b1221edbc767407c (patch) | |
tree | 08549650519022dd367971312f433d865c1f0c17 /include/clang/Basic | |
parent | a860e755f1f9f071b6a6a2f96128a6a258f5c331 (diff) |
PR4700 - remove shift by 0 warning
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78488 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic')
-rw-r--r-- | include/clang/Basic/DiagnosticSemaKinds.td | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index 591cf0a28a..fb36a717f4 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -1241,9 +1241,6 @@ def warn_shift_negative : Warning< "shift count is negative">; def warn_shift_gt_typewidth : Warning< "shift count >= width of type">; -def warn_op_no_effect : Warning< - "operation has no effect">, - InGroup<DiagGroup<"all">>, DefaultIgnore; def err_sizeof_nonfragile_interface : Error< "invalid application of '%select{alignof|sizeof}1' to interface %0 in " |