mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +00:00
skip dbg_value instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107154 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
16575de259
commit
077f1bfa91
@ -410,6 +410,8 @@ Thumb1RegisterInfo::saveScavengerRegister(MachineBasicBlock &MBB,
|
||||
// before that instead and adjust the UseMI.
|
||||
bool done = false;
|
||||
for (MachineBasicBlock::iterator II = I; !done && II != UseMI ; ++II) {
|
||||
if (II->isDebugValue())
|
||||
continue;
|
||||
// If this instruction affects R12, adjust our restore point.
|
||||
for (unsigned i = 0, e = II->getNumOperands(); i != e; ++i) {
|
||||
const MachineOperand &MO = II->getOperand(i);
|
||||
|
Loading…
x
Reference in New Issue
Block a user