mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-24 13:18:17 +00:00
RegisterPressure: fix debug prints in case of physical registers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238371 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -60,11 +60,11 @@ void RegisterPressure::dump(const TargetRegisterInfo *TRI) const {
|
||||
dumpRegSetPressure(MaxSetPressure, TRI);
|
||||
dbgs() << "Live In: ";
|
||||
for (unsigned i = 0, e = LiveInRegs.size(); i < e; ++i)
|
||||
dbgs() << PrintReg(LiveInRegs[i], TRI) << " ";
|
||||
dbgs() << PrintVRegOrUnit(LiveInRegs[i], TRI) << " ";
|
||||
dbgs() << '\n';
|
||||
dbgs() << "Live Out: ";
|
||||
for (unsigned i = 0, e = LiveOutRegs.size(); i < e; ++i)
|
||||
dbgs() << PrintReg(LiveOutRegs[i], TRI) << " ";
|
||||
dbgs() << PrintVRegOrUnit(LiveOutRegs[i], TRI) << " ";
|
||||
dbgs() << '\n';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user