diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-08-23 03:41:05 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-08-23 03:41:05 +0000 |
| commit | a6f074fb3a205b0118aaa2ff282c771aa42e7f18 (patch) | |
| tree | 947747238f3865993be53ff3282e799c3365b914 /llvm/lib/Target/ARM/ARMConstantPoolValue.cpp | |
| parent | ed03a01af151ca21ca98d50a585564427ead453b (diff) | |
| download | bcm5719-llvm-a6f074fb3a205b0118aaa2ff282c771aa42e7f18.tar.gz bcm5719-llvm-a6f074fb3a205b0118aaa2ff282c771aa42e7f18.zip | |
remove various std::ostream version of printing methods from
MachineInstr and MachineOperand. This required eliminating a
bunch of stuff that was using DOUT, I hope that bill doesn't
mind me stealing his fun. ;-)
llvm-svn: 79813
Diffstat (limited to 'llvm/lib/Target/ARM/ARMConstantPoolValue.cpp')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMConstantPoolValue.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp b/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp index 9697422c6dc..b28a295cb08 100644 --- a/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp +++ b/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp @@ -15,7 +15,6 @@ #include "llvm/ADT/FoldingSet.h" #include "llvm/GlobalValue.h" #include "llvm/Type.h" -#include "llvm/Support/Streams.h" #include "llvm/Support/raw_ostream.h" #include <cstdlib> using namespace llvm; @@ -81,13 +80,9 @@ ARMConstantPoolValue::AddSelectionDAGCSEId(FoldingSetNodeID &ID) { } void ARMConstantPoolValue::dump() const { - cerr << " " << *this; + errs() << " " << *this; } -void ARMConstantPoolValue::print(std::ostream &O) const { - raw_os_ostream RawOS(O); - print(RawOS); -} void ARMConstantPoolValue::print(raw_ostream &O) const { if (GV) |

