Index: llvm/trunk/lib/CodeGen/InlineSpiller.cpp =================================================================== --- llvm/trunk/lib/CodeGen/InlineSpiller.cpp +++ llvm/trunk/lib/CodeGen/InlineSpiller.cpp @@ -617,9 +617,12 @@ MachineInstr &MI = *RegI++; // Debug values are not allowed to affect codegen. - if (MI.isDebugInstr()) + if (MI.isDebugValue()) continue; + assert(!MI.isDebugInstr() && "Did not expect to find a use in debug " + "instruction that isn't a DBG_VALUE"); + anyRemat |= reMaterializeFor(LI, MI); } } @@ -933,7 +936,7 @@ MachineInstr *MI = &*(RegI++); // Debug values are not allowed to affect codegen. - if (MI->isDebugInstr()) { + if (MI->isDebugValue()) { // Modify DBG_VALUE now that the value is in a spill slot. MachineBasicBlock *MBB = MI->getParent(); LLVM_DEBUG(dbgs() << "Modifying debug info due to spill:\t" << *MI); @@ -942,6 +945,9 @@ continue; } + assert(!MI->isDebugInstr() && "Did not expect to find a use in debug " + "instruction that isn't a DBG_VALUE"); + // Ignore copies to/from snippets. We'll delete them. if (SnippetCopies.count(MI)) continue;