mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-03 09:28:58 +00:00
Print out register class of spilled register.
llvm-svn: 117761
This commit is contained in:
parent
183c466006
commit
4425035bfd
@ -352,10 +352,12 @@ void InlineSpiller::spill(LiveInterval *li,
|
||||
|
||||
void InlineSpiller::spill(LiveRangeEdit &edit) {
|
||||
edit_ = &edit;
|
||||
DEBUG(dbgs() << "Inline spilling " << edit.getParent() << "\n");
|
||||
assert(!edit.getParent().isStackSlot() && "Trying to spill a stack slot.");
|
||||
DEBUG(dbgs() << "Inline spilling "
|
||||
<< mri_.getRegClass(edit.getReg())->getName()
|
||||
<< ':' << edit.getParent() << "\n");
|
||||
assert(edit.getParent().isSpillable() &&
|
||||
"Attempting to spill already spilled value.");
|
||||
assert(!edit.getParent().isStackSlot() && "Trying to spill a stack slot.");
|
||||
|
||||
if (split())
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user