diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-07-29 06:43:09 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-07-29 06:43:09 +0000 |
commit | a308f80155dc01d4811c8fb855b691edd9bc40c7 (patch) | |
tree | 7cd9d5607fa01ff5812dcdbe9110040379bd85d6 /lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp | |
parent | db7c40db100926e78b4af89760c86b41179b9839 (diff) |
Get rid of calls to void llvm::printSet(const ValueSet &).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp')
-rw-r--r-- | lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp index 26424ef7e1..99d0e7cc0e 100644 --- a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp +++ b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp @@ -175,22 +175,17 @@ void PhyRegAlloc::setCallInterferences(const MachineInstr *MInst, LIt != LEnd; ++LIt) { // get the live range corresponding to live var - LiveRange *const LR = LRI->getLiveRangeForValue(*LIt ); + LiveRange *const LR = LRI->getLiveRangeForValue(*LIt); // LR can be null if it is a const since a const // doesn't have a dominating def - see Assumptions above - if (LR ) { - if (DEBUG_RA >= RA_DEBUG_Interference) { - std::cerr << "\n\tLR after Call: "; - printSet(*LR); - } + if (LR) { + if (DEBUG_RA >= RA_DEBUG_Interference) + std::cerr << "\n\tLR after Call: " << *LR << "\n"; LR->setCallInterference(); - if (DEBUG_RA >= RA_DEBUG_Interference) { - std::cerr << "\n ++After adding call interference for LR: " ; - printSet(*LR); - } + if (DEBUG_RA >= RA_DEBUG_Interference) + std::cerr << "\n ++After adding call interference for LR: " << *LR << "\n"; } - } // Now find the LR of the return value of the call |