We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9351315 commit 6d80833Copy full SHA for 6d80833
llvm/lib/CodeGen/InlineSpiller.cpp
@@ -352,10 +352,12 @@ void InlineSpiller::spill(LiveInterval *li,
352
353
void InlineSpiller::spill(LiveRangeEdit &edit) {
354
edit_ = &edit;
355
- DEBUG(dbgs() << "Inline spilling " << edit.getParent() << "\n");
+ assert(!edit.getParent().isStackSlot() && "Trying to spill a stack slot.");
356
+ DEBUG(dbgs() << "Inline spilling "
357
+ << mri_.getRegClass(edit.getReg())->getName()
358
+ << ':' << edit.getParent() << "\n");
359
assert(edit.getParent().isSpillable() &&
360
"Attempting to spill already spilled value.");
- assert(!edit.getParent().isStackSlot() && "Trying to spill a stack slot.");
361
362
if (split())
363
return;
0 commit comments