about summary refs log tree commit diff homepage
path: root/lib
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-06-05 05:39:57 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-06-05 05:39:57 +0000
commit601877c638420b1c32a0ea49a0ec43c952529bab (patch)
treec3e0331bbd443fab2bbf28082e52b8bb35bb59df /lib
parent1d168e4a14349eca7125ea508f8f219fad66508a (diff)
downloadklee-601877c638420b1c32a0ea49a0ec43c952529bab.tar.gz
Expr::print shouldn't introduce line breaks or extra formatting.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@72921 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Expr/Expr.cpp3
-rw-r--r--lib/Expr/ExprPPrinter.cpp11
2 files changed, 11 insertions, 3 deletions
diff --git a/lib/Expr/Expr.cpp b/lib/Expr/Expr.cpp
index bc871808..d58c9085 100644
--- a/lib/Expr/Expr.cpp
+++ b/lib/Expr/Expr.cpp
@@ -320,8 +320,7 @@ ref<Expr> Expr::createPointer(uint64_t v) {
 }
 
 void Expr::print(std::ostream &os) const {
-  const ref<Expr> tmp((Expr*)this);
-  ExprPPrinter::printOne(os, "", tmp);
+  ExprPPrinter::printSingleExpr(os, (Expr*)this);
 }
 
 /***/
diff --git a/lib/Expr/ExprPPrinter.cpp b/lib/Expr/ExprPPrinter.cpp
index 94c0ac17..c27e265e 100644
--- a/lib/Expr/ExprPPrinter.cpp
+++ b/lib/Expr/ExprPPrinter.cpp
@@ -406,7 +406,6 @@ public:
             PC << "(Not";
             printWidth(PC, e);
             PC << ' ';
-            // FIXME: This is a boom if right is a constant.
             print(ee->right, PC);
             PC << ')';
             return;
@@ -484,6 +483,16 @@ void ExprPPrinter::printOne(std::ostream &os,
   PC.breakLine();
 }
 
+void ExprPPrinter::printSingleExpr(std::ostream &os, const ref<Expr> &e) {
+  PPrinter p(os);
+  p.scan(e);
+
+  // FIXME: Need to figure out what to do here. Probably print as a
+  // "forward declaration" with whatever syntax we pick for that.
+  PrintContext PC(os);
+  p.print(e, PC);
+}
+
 void ExprPPrinter::printConstraints(std::ostream &os,
                                     const ConstraintManager &constraints) {
   printQuery(os, constraints, ConstantExpr::alloc(false, Expr::Bool));