diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2006-12-16 02:15:42 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2006-12-16 02:15:42 +0000 |
commit | 29192e627423eef31acc422e679c91103bc162bb (patch) | |
tree | 04c69f4bfc7230dd008b33681eea2672991db6e4 /llvm/lib/CodeGen/MachineBasicBlock.cpp | |
parent | 860004688a51953684311d5288cfe4980c18e6b4 (diff) | |
download | bcm5719-llvm-29192e627423eef31acc422e679c91103bc162bb.tar.gz bcm5719-llvm-29192e627423eef31acc422e679c91103bc162bb.zip |
The best unbreakage yet, addressing Bill's concerns.
llvm-svn: 32622
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineBasicBlock.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index 39b142a2f35..a626f4fdd15 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp @@ -31,11 +31,6 @@ std::ostream& llvm::operator<<(std::ostream &OS, const MachineBasicBlock &MBB) { return OS; } -OStream& llvm::operator<<(OStream &OS, const MachineBasicBlock &MBB) { - if (OS.stream()) *OS.stream() << MBB; - return OS; -} - // MBBs start out as #-1. When a MBB is added to a MachineFunction, it // gets the next available unique MBB number. If it is removed from a // MachineFunction, it goes back to being #-1. |