about summary refs log tree commit diff homepage
path: root/lib/Expr/ExprSMTLIBPrinter.cpp
diff options
context:
space:
mode:
authorAndrea Mattavelli <andreamattavelli@users.noreply.github.com>2017-09-14 13:58:11 +0100
committerGitHub <noreply@github.com>2017-09-14 13:58:11 +0100
commit2108b0e8566bb1d6e8629b7b6806c07010a8269f (patch)
treeb6dce38dd98d681e97d08d0b42adff078ccf7215 /lib/Expr/ExprSMTLIBPrinter.cpp
parentd19500eb93083c8cc6bb72bcb54414015830cacb (diff)
parentb5929722363993bf0ad2a56d66176606cc742bc4 (diff)
downloadklee-2108b0e8566bb1d6e8629b7b6806c07010a8269f.tar.gz
Merge pull request #749 from odeits/issue/717
Remove unnecessary null pointer checks
Diffstat (limited to 'lib/Expr/ExprSMTLIBPrinter.cpp')
-rw-r--r--lib/Expr/ExprSMTLIBPrinter.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Expr/ExprSMTLIBPrinter.cpp b/lib/Expr/ExprSMTLIBPrinter.cpp
index 192e3461..fd515509 100644
--- a/lib/Expr/ExprSMTLIBPrinter.cpp
+++ b/lib/Expr/ExprSMTLIBPrinter.cpp
@@ -61,14 +61,12 @@ ExprSMTLIBPrinter::ExprSMTLIBPrinter()
 }
 
 ExprSMTLIBPrinter::~ExprSMTLIBPrinter() {
-  if (p != NULL)
-    delete p;
+  delete p;
 }
 
 void ExprSMTLIBPrinter::setOutput(llvm::raw_ostream &output) {
   o = &output;
-  if (p != NULL)
-    delete p;
+  delete p;
 
   p = new PrintContext(output);
 }