Convert debug messages to use dbgs(). Generally this means
[oota-llvm.git] / lib / Analysis / PostDominators.cpp
index 69522e8a39dd68dae5defd23f08ac754d8740f91..69d6b47bbee49cd42264edce511ea2680e2a94e6 100644 (file)
@@ -41,9 +41,8 @@ PostDominatorTree::~PostDominatorTree() {
   delete DT;
 }
 
-void PostDominatorTree::print(std::ostream &OS, const Module *) const {
-  raw_os_ostream OSS(OS);
-  DT->print(OSS);
+void PostDominatorTree::print(raw_ostream &OS, const Module *) const {
+  DT->print(OS);
 }