summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/DiagnosticSemaKinds.td
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2014-11-03 17:03:07 +0000
committerFariborz Jahanian <fjahanian@apple.com>2014-11-03 17:03:07 +0000
commit46ae6e2d952c95fdb88256b7d5a7e9b995353bf7 (patch)
tree58fe0b9f28dcf1f000f434190a6526272fc5c1ed /include/clang/Basic/DiagnosticSemaKinds.td
parent9cd8da46599c0b305dd4e6f764484a5c04044a6a (diff)
This patch reverts r220496 which issues warning on comparing
parameters with nonnull attribute when comparison is always true/false. Patch causes false positive when parameter is modified in the function. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@221163 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticSemaKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticSemaKinds.td8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td
index 4cd831febe..6503aef324 100644
--- a/include/clang/Basic/DiagnosticSemaKinds.td
+++ b/include/clang/Basic/DiagnosticSemaKinds.td
@@ -2507,10 +2507,6 @@ def warn_impcast_pointer_to_bool : Warning<
"address of%select{| function| array}0 '%1' will always evaluate to "
"'true'">,
InGroup<PointerBoolConversion>;
-def warn_cast_nonnull_to_bool : Warning<
- "nonnull parameter '%0' will always evaluate to "
- "'true'">,
- InGroup<PointerBoolConversion>;
def warn_this_bool_conversion : Warning<
"'this' pointer cannot be null in well-defined C++ code; pointer may be "
"assumed to always convert to true">, InGroup<UndefinedBoolConversion>;
@@ -2523,10 +2519,6 @@ def warn_null_pointer_compare : Warning<
"comparison of %select{address of|function|array}0 '%1' %select{not |}2"
"equal to a null pointer is always %select{true|false}2">,
InGroup<TautologicalPointerCompare>;
-def warn_nonnull_parameter_compare : Warning<
- "comparison of nonnull parameter '%0' %select{not |}1"
- "equal to a null pointer is always %select{true|false}1">,
- InGroup<TautologicalPointerCompare>;
def warn_this_null_compare : Warning<
"'this' pointer cannot be null in well-defined C++ code; comparison may be "
"assumed to always evaluate to %select{true|false}0">,