mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Stack Coloring: Dont crash on dbg values which use stack frames.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163616 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -523,10 +523,12 @@ void StackColoring::remapInstructions(DenseMap<int, int> &SlotRemap) {
|
||||
// the calculated range then it means that the alloca usage moved
|
||||
// outside of the lifetime markers.
|
||||
#ifndef NDEBUG
|
||||
SlotIndex Index = Indexes->getInstructionIndex(I);
|
||||
LiveInterval* Interval = Intervals[FromSlot];
|
||||
assert(Interval->find(Index) != Interval->end() &&
|
||||
if (!I->isDebugValue()) {
|
||||
SlotIndex Index = Indexes->getInstructionIndex(I);
|
||||
LiveInterval* Interval = Intervals[FromSlot];
|
||||
assert(Interval->find(Index) != Interval->end() &&
|
||||
"Found instruction usage outside of live range.");
|
||||
}
|
||||
#endif
|
||||
|
||||
// Fix the machine instructions.
|
||||
|
Reference in New Issue
Block a user