forked from OSchip/llvm-project
Rename AliasSet to SubRegs, to reflect changes in the surrounding code.
llvm-svn: 57618
This commit is contained in:
parent
6613991eae
commit
0b3bcee284
|
@ -129,9 +129,9 @@ bool DeadMachineInstructionElim::runOnMachineFunction(MachineFunction &MF) {
|
|||
// Check the subreg set, not the alias set, because a def
|
||||
// of a super-register may still be partially live after
|
||||
// this def.
|
||||
for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
|
||||
*AliasSet; ++AliasSet)
|
||||
LivePhysRegs.reset(*AliasSet);
|
||||
for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
|
||||
*SubRegs; ++SubRegs)
|
||||
LivePhysRegs.reset(*SubRegs);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue