diff options
author | Bill Wendling <isanbard@gmail.com> | 2006-11-29 00:39:47 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2006-11-29 00:39:47 +0000 |
commit | 5c3966aa6892c52d336b7725349ff9f5541c03ea (patch) | |
tree | bd08b590f804e19e00deca0eb38c39977ba078df /llvm/lib/CodeGen/LiveInterval.cpp | |
parent | afd54eb8b63025955fca8c184ab78f7ed75414f7 (diff) | |
download | bcm5719-llvm-5c3966aa6892c52d336b7725349ff9f5541c03ea.tar.gz bcm5719-llvm-5c3966aa6892c52d336b7725349ff9f5541c03ea.zip |
Converted to using llvm streams instead of <iostream>s
llvm-svn: 31992
Diffstat (limited to 'llvm/lib/CodeGen/LiveInterval.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index 0e75bfb68f3..d178a6f444e 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/lib/CodeGen/LiveInterval.cpp @@ -475,7 +475,7 @@ void LiveRange::dump() const { llvm_cerr << *this << "\n"; } -void LiveInterval::print(llvm_ostream &OS, const MRegisterInfo *MRI) const { +void LiveInterval::print(llvm_ostream OS, const MRegisterInfo *MRI) const { if (MRI && MRegisterInfo::isPhysicalRegister(reg)) OS << MRI->getName(reg); else |