aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2006-12-16 02:15:42 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2006-12-16 02:15:42 +0000
commit4b607748d86b44cc59e5cf3eee194dfd9b0fcd86 (patch)
treedeb29e62faba87d6a7268aa7aad3939fe6d44b50 /lib/CodeGen/MachineBasicBlock.cpp
parent0b1b9dcf22745b533562134c2f0472098fe085fd (diff)
downloadexternal_llvm-4b607748d86b44cc59e5cf3eee194dfd9b0fcd86.zip
external_llvm-4b607748d86b44cc59e5cf3eee194dfd9b0fcd86.tar.gz
external_llvm-4b607748d86b44cc59e5cf3eee194dfd9b0fcd86.tar.bz2
The best unbreakage yet, addressing Bill's concerns.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32622 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r--lib/CodeGen/MachineBasicBlock.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/CodeGen/MachineBasicBlock.cpp b/lib/CodeGen/MachineBasicBlock.cpp
index 39b142a..a626f4f 100644
--- a/lib/CodeGen/MachineBasicBlock.cpp
+++ b/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.