diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2009-07-11 19:29:04 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2009-07-11 19:29:04 +0000 |
commit | dadbf3a772a74deee16006103d0ae2ac8b40065a (patch) | |
tree | 0839d87a33f3b8d4060653b2795fc91794bbadf6 /lib/Expr/ExprPPrinter.cpp | |
parent | db7adeb304b11dfd67f67ee12190425b79257aea (diff) | |
download | klee-dadbf3a772a74deee16006103d0ae2ac8b40065a.tar.gz |
Removed the Nz macro.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@75377 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Expr/ExprPPrinter.cpp')
-rw-r--r-- | lib/Expr/ExprPPrinter.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/Expr/ExprPPrinter.cpp b/lib/Expr/ExprPPrinter.cpp index 691ccd89..7130da97 100644 --- a/lib/Expr/ExprPPrinter.cpp +++ b/lib/Expr/ExprPPrinter.cpp @@ -408,19 +408,6 @@ public: bindings.insert(std::make_pair(e, counter++)); } - // Detect Nz - // FIXME: This should be in common code. - if (const EqExpr *ee = dyn_cast<EqExpr>(e)) { - if (ee->left == ConstantExpr::alloc(false, Expr::Bool)) { - PC << "(Nz"; - printWidth(PC, e); - PC << ' '; - print(ee->right, PC); - PC << ')'; - return; - } - } - // Detect multibyte reads. // FIXME: Hrm. One problem with doing this is that we are // masking the sharing of the indices which aren't |