diff options
| author | Julian Büning <julian.buening@rwth-aachen.de> | 2020-10-10 15:13:06 +0200 |
|---|---|---|
| committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-11-12 10:13:54 +0000 |
| commit | c763a4087f1d8fa4dbdfb9c8f30d545cdb66a0aa (patch) | |
| tree | 5d40c27ecfb16230aa3e714a3e7690b44b322860 /lib/Expr/ExprSMTLIBPrinter.cpp | |
| parent | acdb9a692d9eee8dd102befa4e101bfa5f028b0e (diff) | |
| download | klee-c763a4087f1d8fa4dbdfb9c8f30d545cdb66a0aa.tar.gz | |
Ref: implement operator bool()
Diffstat (limited to 'lib/Expr/ExprSMTLIBPrinter.cpp')
| -rw-r--r-- | lib/Expr/ExprSMTLIBPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Expr/ExprSMTLIBPrinter.cpp b/lib/Expr/ExprSMTLIBPrinter.cpp index 523e7f8c..8b651b04 100644 --- a/lib/Expr/ExprSMTLIBPrinter.cpp +++ b/lib/Expr/ExprSMTLIBPrinter.cpp @@ -692,7 +692,7 @@ void ExprSMTLIBPrinter::printAction() { } void ExprSMTLIBPrinter::scan(const ref<Expr> &e) { - assert(!(e.isNull()) && "found NULL expression"); + assert(e && "found NULL expression"); if (isa<ConstantExpr>(e)) return; // we don't need to scan simple constants |
