diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-23 01:12:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-23 01:12:47 +0000 |
commit | d74c556e9aaad81a188158b7ba12d7ccffb30936 (patch) | |
tree | e65b120be611eddb210982e0af5c0d7cebf0761f /include/llvm/CodeGen/MachineFrameInfo.h | |
parent | 19ef66968965f829336f4dc01fec05bfa72712c3 (diff) |
convert some stuff to work on raw_ostreams instead of std::ostream.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79803 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFrameInfo.h')
-rw-r--r-- | include/llvm/CodeGen/MachineFrameInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h index 1486a5ea58..05ab49961d 100644 --- a/include/llvm/CodeGen/MachineFrameInfo.h +++ b/include/llvm/CodeGen/MachineFrameInfo.h @@ -18,10 +18,10 @@ #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; |