eliminate the std::ostream form of WriteAsOperand and update clients.
[oota-llvm.git] / include / llvm / Analysis / PostDominators.h
index cd6af74024a547adabce9e2ccbad3e6f183abddb..ff579e3c4a31162b0094da8d96ba78c667c82b5c 100644 (file)
@@ -57,9 +57,7 @@ struct PostDominatorTree : public FunctionPass {
     return DT->properlyDominates(A, B);
   }
 
-  virtual void print(std::ostream &OS, const Module* M= 0) const {
-    DT->print(OS, M);
-  }
+  virtual void print(std::ostream &OS, const Module*) const;
 };
 
 FunctionPass* createPostDomTree();