mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Scheduler assumes SDDbgValue nodes are in source order. That's true currently. But add an assertion to verify it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99501 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5a6e97a7e4
commit
4ec9bd9a6f
@ -528,8 +528,16 @@ EmitSchedule(DenseMap<MachineBasicBlock*, MachineBasicBlock*> *EM) {
|
||||
if (!MI)
|
||||
continue;
|
||||
MachineBasicBlock *MIBB = MI->getParent();
|
||||
#ifndef NDEBUG
|
||||
unsigned LastDIOrder = 0;
|
||||
#endif
|
||||
for (; DI != DE &&
|
||||
(*DI)->getOrder() >= LastOrder && (*DI)->getOrder() < Order; ++DI) {
|
||||
#ifndef NDEBUG
|
||||
assert((*DI)->getOrder() >= LastDIOrder &&
|
||||
"SDDbgValue nodes must be in source order!");
|
||||
LastDIOrder = (*DI)->getOrder();
|
||||
#endif
|
||||
if ((*DI)->isInvalidated())
|
||||
continue;
|
||||
MachineInstr *DbgMI = Emitter.EmitDbgValue(*DI, MIBB, VRBaseMap, EM);
|
||||
|
Loading…
x
Reference in New Issue
Block a user