mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Avoid dereferencing a NULL pointer.
Fixes PR13943. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164778 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -87,7 +87,7 @@ bool LiveRangeEdit::allUsesAvailableAt(const MachineInstr *OrigMI,
|
||||
|
||||
// We can't remat physreg uses, unless it is a constant.
|
||||
if (TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
|
||||
if (MRI.isConstantPhysReg(MO.getReg(), VRM->getMachineFunction()))
|
||||
if (MRI.isConstantPhysReg(MO.getReg(), *OrigMI->getParent()->getParent()))
|
||||
continue;
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user