diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-23 03:13:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-23 03:13:20 +0000 |
commit | cf143a4d917699f8f4202f331fa9e184070471fb (patch) | |
tree | 11df4a1200aac57c6156d1f9135d12d65812f864 /include/llvm/CodeGen/MachineBasicBlock.h | |
parent | 51a1132403da7c4e8a57369815596c8d485f5db2 (diff) | |
download | external_llvm-cf143a4d917699f8f4202f331fa9e184070471fb.tar.gz external_llvm-cf143a4d917699f8f4202f331fa9e184070471fb.tar.bz2 external_llvm-cf143a4d917699f8f4202f331fa9e184070471fb.zip |
remove std::ostream versions of printing stuff for MBB and MF,
upgrading a few things to use raw_ostream
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79811 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineBasicBlock.h')
-rw-r--r-- | include/llvm/CodeGen/MachineBasicBlock.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index 7d6ecf9f1b..9b989b2304 100644 --- a/include/llvm/CodeGen/MachineBasicBlock.h +++ b/include/llvm/CodeGen/MachineBasicBlock.h @@ -310,7 +310,6 @@ public: // Debugging methods. void dump() const; - void print(std::ostream &OS) const; void print(raw_ostream &OS) const; /// getNumber - MachineBasicBlocks are uniquely numbered at the function @@ -339,7 +338,6 @@ private: // Methods used to maintain doubly linked list of blocks... void removePredecessor(MachineBasicBlock *pred); }; -std::ostream& operator<<(std::ostream &OS, const MachineBasicBlock &MBB); raw_ostream& operator<<(raw_ostream &OS, const MachineBasicBlock &MBB); //===--------------------------------------------------------------------===// |