diff options
Diffstat (limited to 'lib/Expr/Expr.cpp')
-rw-r--r-- | lib/Expr/Expr.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Expr/Expr.cpp b/lib/Expr/Expr.cpp index b1bf9824..386d29de 100644 --- a/lib/Expr/Expr.cpp +++ b/lib/Expr/Expr.cpp @@ -10,13 +10,13 @@ #include "klee/Expr.h" #include "llvm/Support/CommandLine.h" -#include "llvm/Support/Streams.h" // FIXME: We shouldn't need this once fast constant support moves into // Core. If we need to do arithmetic, we probably want to use APInt. #include "klee/Internal/Support/IntEvaluation.h" #include "klee/util/ExprPPrinter.h" +#include <iostream> #include <sstream> using namespace klee; @@ -291,8 +291,8 @@ void Expr::print(std::ostream &os) const { } void Expr::dump() const { - this->print(*llvm::cerr.stream()); - llvm::cerr << std::endl; + this->print(std::cerr); + std::cerr << std::endl; } /***/ |