diff options
| author | Dan Gohman <gohman@apple.com> | 2008-10-16 01:06:18 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2008-10-16 01:06:18 +0000 |
| commit | 0b3bcee2840dc7316af199217a00172583439afe (patch) | |
| tree | 60c28dc138569ae646d8743dd718ddeac1a7ff39 /llvm/lib/CodeGen/DeadMachineInstructionElim.cpp | |
| parent | 6613991eae1df0ab5b433e28e4b681279b451cdd (diff) | |
| download | bcm5719-llvm-0b3bcee2840dc7316af199217a00172583439afe.tar.gz bcm5719-llvm-0b3bcee2840dc7316af199217a00172583439afe.zip | |
Rename AliasSet to SubRegs, to reflect changes in the surrounding code.
llvm-svn: 57618
Diffstat (limited to 'llvm/lib/CodeGen/DeadMachineInstructionElim.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/DeadMachineInstructionElim.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp b/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp index 0d043f795a2..4832a5ee9ae 100644 --- a/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp +++ b/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp @@ -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); } } } |

