mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-19 19:31:50 +00:00
Minor beautification: fold a couple of lines of code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7054 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
799ffeede1
commit
65b2f401af
@ -200,11 +200,10 @@ void PhyRegAlloc::setCallInterferences(const MachineInstr *MInst,
|
||||
if (DEBUG_RA >= RA_DEBUG_Interference)
|
||||
cerr << "\n For call inst: " << *MInst;
|
||||
|
||||
ValueSet::const_iterator LIt = LVSetAft->begin();
|
||||
|
||||
// for each live var in live variable set after machine inst
|
||||
//
|
||||
for ( ; LIt != LVSetAft->end(); ++LIt) {
|
||||
for (ValueSet::const_iterator LIt = LVSetAft->begin(), LEnd = LVSetAft->end();
|
||||
LIt != LEnd; ++LIt) {
|
||||
|
||||
// get the live range corresponding to live var
|
||||
//
|
||||
|
@ -200,11 +200,10 @@ void PhyRegAlloc::setCallInterferences(const MachineInstr *MInst,
|
||||
if (DEBUG_RA >= RA_DEBUG_Interference)
|
||||
cerr << "\n For call inst: " << *MInst;
|
||||
|
||||
ValueSet::const_iterator LIt = LVSetAft->begin();
|
||||
|
||||
// for each live var in live variable set after machine inst
|
||||
//
|
||||
for ( ; LIt != LVSetAft->end(); ++LIt) {
|
||||
for (ValueSet::const_iterator LIt = LVSetAft->begin(), LEnd = LVSetAft->end();
|
||||
LIt != LEnd; ++LIt) {
|
||||
|
||||
// get the live range corresponding to live var
|
||||
//
|
||||
|
Loading…
x
Reference in New Issue
Block a user