mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +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:
parent
636aba5bd1
commit
49e9f44cb1
@ -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';
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user