Use llvm streams instead of <iostream>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31985 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling
2006-11-28 22:48:48 +00:00
parent 3e3bcbf3a0
commit a09362eb97
3 changed files with 18 additions and 20 deletions

View File

@ -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,