Removed CFG.cpp's dependence on #including iostream.

llvm-svn: 45116
This commit is contained in:
Ted Kremenek 2007-12-17 19:35:20 +00:00
parent 725b73ff42
commit a59e0064d3
1 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@
#include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/SmallPtrSet.h"
#include "llvm/Support/GraphWriter.h" #include "llvm/Support/GraphWriter.h"
#include <iostream> #include "llvm/Support/Streams.h"
#include <iomanip> #include <iomanip>
#include <algorithm> #include <algorithm>
#include <sstream> #include <sstream>
@ -1298,7 +1298,7 @@ void print_block(std::ostream& OS, const CFG* cfg, const CFGBlock& B,
} // end anonymous namespace } // end anonymous namespace
/// dump - A simple pretty printer of a CFG that outputs to stderr. /// dump - A simple pretty printer of a CFG that outputs to stderr.
void CFG::dump() const { print(std::cerr); } void CFG::dump() const { print(*llvm::cerr.stream()); }
/// print - A simple pretty printer of a CFG that outputs to an ostream. /// print - A simple pretty printer of a CFG that outputs to an ostream.
void CFG::print(std::ostream& OS) const { void CFG::print(std::ostream& OS) const {
@ -1322,7 +1322,7 @@ void CFG::print(std::ostream& OS) const {
} }
/// dump - A simply pretty printer of a CFGBlock that outputs to stderr. /// dump - A simply pretty printer of a CFGBlock that outputs to stderr.
void CFGBlock::dump(const CFG* cfg) const { print(std::cerr, cfg); } void CFGBlock::dump(const CFG* cfg) const { print(*llvm::cerr.stream(), cfg); }
/// print - A simple pretty printer of a CFGBlock that outputs to an ostream. /// print - A simple pretty printer of a CFGBlock that outputs to an ostream.
/// Generally this will only be called from CFG::print. /// Generally this will only be called from CFG::print.