eliminate the "Value" printing methods that print to a std::ostream.
[oota-llvm.git] / lib / VMCore / AsmWriter.cpp
index 9c3f76f0d02789ec1f6592a2ed2a1b238fcc370b..696cd6f5c47f49587c68e3c4e59b1859b145cd16 100644 (file)
@@ -2085,10 +2085,11 @@ void Value::print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW) const {
   }
 }
 
+/*
 void Value::print(std::ostream &O, AssemblyAnnotationWriter *AAW) const {
   raw_os_ostream OS(O);
   print(OS, AAW);
-}
+}*/
 
 // Value::dump - allow easy printing of Values from the debugger.
 void Value::dump() const { print(errs()); errs() << '\n'; }