diff options
author | Bill Wendling <isanbard@gmail.com> | 2006-11-28 22:48:48 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2006-11-28 22:48:48 +0000 |
commit | 787b77320fc6e376b5a65479dc27bdf6b6548726 (patch) | |
tree | 6978e271d8784e6cfd673b8671856a35166bd0ea /llvm/lib/CodeGen/MachineInstr.cpp | |
parent | 6c1740f31f94d125c4287c4ca037383494f00b9c (diff) | |
download | llvm-787b77320fc6e376b5a65479dc27bdf6b6548726.zip llvm-787b77320fc6e376b5a65479dc27bdf6b6548726.tar.gz llvm-787b77320fc6e376b5a65479dc27bdf6b6548726.tar.bz2 |
Use llvm streams instead of <iostream>
llvm-svn: 31985
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index 7da1dca..b6e6011 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -17,8 +17,8 @@ #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/MRegisterInfo.h" #include "llvm/Support/LeakDetector.h" +#include "llvm/Support/Streams.h" #include <iostream> - using namespace llvm; // Global variable holding an array of descriptors for machine instructions. @@ -175,7 +175,7 @@ bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const { } void MachineInstr::dump() const { - std::cerr << " " << *this; + llvm_cerr << " " << *this; } static inline void OutputReg(std::ostream &os, unsigned RegNo, |