mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Handle <def,undef> in the second loop as well.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130718 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
52f6c03a45
commit
d61c40360c
@ -181,12 +181,14 @@ void RegScavenger::forward() {
|
||||
// Verify uses and defs.
|
||||
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
||||
const MachineOperand &MO = MI->getOperand(i);
|
||||
if (!MO.isReg() || MO.isUndef())
|
||||
if (!MO.isReg())
|
||||
continue;
|
||||
unsigned Reg = MO.getReg();
|
||||
if (!Reg || isReserved(Reg))
|
||||
continue;
|
||||
if (MO.isUse()) {
|
||||
if (MO.isUndef())
|
||||
continue;
|
||||
if (!isUsed(Reg)) {
|
||||
// Check if it's partial live: e.g.
|
||||
// D0 = insert_subreg D0<undef>, S0
|
||||
|
Loading…
x
Reference in New Issue
Block a user