convert some stuff to work on raw_ostreams instead of std::ostream.
[oota-llvm.git] / include / llvm / CodeGen / MachineFrameInfo.h
index 1486a5ea58205454b8b6f00730ffd2b8df836a8b..05ab49961d55d39bf64e68dcfcbd6cdea613e11a 100644 (file)
 #include "llvm/ADT/DenseSet.h"
 #include "llvm/Support/DataTypes.h"
 #include <cassert>
-#include <iosfwd>
 #include <vector>
 
 namespace llvm {
+class raw_ostream;
 class TargetData;
 class TargetRegisterClass;
 class Type;
@@ -423,7 +423,7 @@ public:
   /// print - Used by the MachineFunction printer to print information about
   /// stack objects.  Implemented in MachineFunction.cpp
   ///
-  void print(const MachineFunction &MF, std::ostream &OS) const;
+  void print(const MachineFunction &MF, raw_ostream &OS) const;
 
   /// dump - Print the function to stderr.
   void dump(const MachineFunction &MF) const;