diff options
author | David Greene <greened@obbligato.org> | 2010-01-04 23:48:20 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-04 23:48:20 +0000 |
commit | 29388d6a6ff4d89805e164bee8c00bf4adc160a7 (patch) | |
tree | cb19e63561f6f2f3dfd1eaa7be9d7cdbd0ea0f83 /llvm/lib/CodeGen/MachineInstr.cpp | |
parent | 6671011c2104c41380053e64f12212f6822be24f (diff) | |
download | bcm5719-llvm-29388d6a6ff4d89805e164bee8c00bf4adc160a7.tar.gz bcm5719-llvm-29388d6a6ff4d89805e164bee8c00bf4adc160a7.zip |
Change errs() to dbgs().
llvm-svn: 92545
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index a761c2daa96..358ea3fd71a 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -28,6 +28,7 @@ #include "llvm/Target/TargetRegisterInfo.h" #include "llvm/Analysis/AliasAnalysis.h" #include "llvm/Analysis/DebugInfo.h" +#include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/LeakDetector.h" #include "llvm/Support/MathExtras.h" @@ -1094,7 +1095,7 @@ unsigned MachineInstr::isConstantValuePHI() const { } void MachineInstr::dump() const { - errs() << " " << *this; + dbgs() << " " << *this; } void MachineInstr::print(raw_ostream &OS, const TargetMachine *TM) const { |