mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-27 14:34:58 +00:00
Add debugging output for joining assignments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15187 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3f86193cd2
commit
c83e40d1b6
@ -616,6 +616,11 @@ void LiveIntervals::joinIntervals() {
|
||||
for (unsigned i = 0, e = MBBs.size(); i != e; ++i)
|
||||
joinIntervalsInMachineBB(MBBs[i].second);
|
||||
}
|
||||
|
||||
DEBUG(std::cerr << "*** Register mapping ***\n");
|
||||
DEBUG(for (std::map<unsigned, unsigned>::iterator I = r2rMap_.begin(),
|
||||
E = r2rMap_.end(); I != E; ++I)
|
||||
std::cerr << " reg " << I->first << " -> reg " << I->second << "\n";);
|
||||
}
|
||||
|
||||
/// Return true if the two specified registers belong to different register
|
||||
|
Loading…
x
Reference in New Issue
Block a user