mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Ignore debug info one more place during coalescing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95819 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9a722caa26
commit
99efcf299f
@ -1173,6 +1173,8 @@ SimpleRegisterCoalescing::HasIncompatibleSubRegDefUse(MachineInstr *CopyMI,
|
||||
for (MachineRegisterInfo::reg_iterator I = mri_->reg_begin(VirtReg),
|
||||
E = mri_->reg_end(); I != E; ++I) {
|
||||
MachineOperand &O = I.getOperand();
|
||||
if (O.isDebug())
|
||||
continue;
|
||||
MachineInstr *MI = &*I;
|
||||
if (MI == CopyMI || JoinedCopies.count(MI))
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user