summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineInstr.h
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2006-12-15 22:57:14 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2006-12-15 22:57:14 +0000
commitc21c5eeb4f56f160e79522df2d3aab5cfe73c05d (patch)
treeb349cac9dfc28354762c66ad227c0ae9e496748a /include/llvm/CodeGen/MachineInstr.h
parent19103b11ecbd5153537a1c64ffefa922fe591add (diff)
downloadllvm-c21c5eeb4f56f160e79522df2d3aab5cfe73c05d.tar.gz
llvm-c21c5eeb4f56f160e79522df2d3aab5cfe73c05d.tar.bz2
llvm-c21c5eeb4f56f160e79522df2d3aab5cfe73c05d.tar.xz
An even better unbreakage...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32617 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineInstr.h')
-rw-r--r--include/llvm/CodeGen/MachineInstr.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h
index 181a6414a6..e19a3ebfbe 100644
--- a/include/llvm/CodeGen/MachineInstr.h
+++ b/include/llvm/CodeGen/MachineInstr.h
@@ -22,7 +22,6 @@
#include <vector>
#include <cassert>
#include <iosfwd>
-#include <ostream>
namespace llvm {
@@ -286,10 +285,7 @@ public:
IsDead = false;
}
- friend OStream& operator<<(OStream& os, const MachineOperand& mop) {
- if (os.stream()) *os.stream() << mop;
- return os;
- }
+ friend OStream& operator<<(OStream& os, const MachineOperand& mop);
friend std::ostream& operator<<(std::ostream& os, const MachineOperand& mop);
friend class MachineInstr;
@@ -403,10 +399,7 @@ public:
}
void print(std::ostream &OS, const TargetMachine *TM) const;
void dump() const;
- friend OStream& operator<<(OStream& os, const MachineInstr& minstr){
- if (os.stream()) *os.stream() << minstr;
- return os;
- }
+ friend OStream& operator<<(OStream& os, const MachineInstr& minstr);
friend std::ostream& operator<<(std::ostream& os, const MachineInstr& minstr);
//===--------------------------------------------------------------------===//