summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/simplifypointertobool.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/simplifypointertobool.cxx')
-rw-r--r--compilerplugins/clang/simplifypointertobool.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/compilerplugins/clang/simplifypointertobool.cxx b/compilerplugins/clang/simplifypointertobool.cxx
index 4f8abb52c74f..4630556984a3 100644
--- a/compilerplugins/clang/simplifypointertobool.cxx
+++ b/compilerplugins/clang/simplifypointertobool.cxx
@@ -423,9 +423,7 @@ bool SimplifyPointerToBool::VisitBinaryOperator(BinaryOperator const* binOp)
if (ignoreLocation(binOp))
return true;
auto opCode = binOp->getOpcode();
- //TODO if (opCode != BO_EQ && opCode != BO_NE)
- // return true;
- if (opCode != BO_NE)
+ if (opCode != BO_EQ && opCode != BO_NE)
return true;
const Expr* possibleMemberCall = nullptr;
if (isa<CXXNullPtrLiteralExpr>(binOp->getLHS()->IgnoreParenImpCasts()))