From: Dan Gohman Date: Thu, 16 Oct 2008 01:06:18 +0000 (+0000) Subject: Rename AliasSet to SubRegs, to reflect changes in the surrounding code. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=131161bc6e490624ab3b906d5a5233050dae4a99;p=oota-llvm.git Rename AliasSet to SubRegs, to reflect changes in the surrounding code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57618 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/DeadMachineInstructionElim.cpp b/lib/CodeGen/DeadMachineInstructionElim.cpp index 0d043f795a2..4832a5ee9ae 100644 --- a/lib/CodeGen/DeadMachineInstructionElim.cpp +++ b/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); } } }