mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
It's not safe to propagate implicit_def that defines part of a register.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103436 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fc6e6a9b3b
commit
9cc9bfaf86
@ -89,6 +89,8 @@ bool ProcessImplicitDefs::runOnMachineFunction(MachineFunction &fn) {
|
||||
MachineInstr *MI = &*I;
|
||||
++I;
|
||||
if (MI->isImplicitDef()) {
|
||||
if (MI->getOperand(0).getSubReg())
|
||||
continue;
|
||||
unsigned Reg = MI->getOperand(0).getReg();
|
||||
ImpDefRegs.insert(Reg);
|
||||
if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user