From 0b3bcee2840dc7316af199217a00172583439afe Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 16 Oct 2008 01:06:18 +0000 Subject: Rename AliasSet to SubRegs, to reflect changes in the surrounding code. llvm-svn: 57618 --- llvm/lib/CodeGen/DeadMachineInstructionElim.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib/CodeGen/DeadMachineInstructionElim.cpp') 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); } } } -- cgit v1.2.3