diff options
| author | Craig Topper <craig.topper@gmail.com> | 2012-03-05 05:37:41 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@gmail.com> | 2012-03-05 05:37:41 +0000 |
| commit | 4b02a29ebadf481f00cd19d04294d64d0f446e34 (patch) | |
| tree | 9caa3e131e35f68fad5b7768ec60c3343ebcf60e /llvm/lib/CodeGen/DeadMachineInstructionElim.cpp | |
| parent | 219ba1969bc8e454c7c3e4eed599865e4ae398fe (diff) | |
| download | bcm5719-llvm-4b02a29ebadf481f00cd19d04294d64d0f446e34.tar.gz bcm5719-llvm-4b02a29ebadf481f00cd19d04294d64d0f446e34.zip | |
Convert more GenRegisterInfo tables from unsigned to uint16_t to reduce static data size.
llvm-svn: 152016
Diffstat (limited to 'llvm/lib/CodeGen/DeadMachineInstructionElim.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/DeadMachineInstructionElim.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp b/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp index f175f3bab72..aa10d1d41f2 100644 --- a/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp +++ b/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp @@ -171,7 +171,7 @@ 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 *SubRegs = TRI->getSubRegisters(Reg); + for (const uint16_t *SubRegs = TRI->getSubRegisters(Reg); *SubRegs; ++SubRegs) LivePhysRegs.reset(*SubRegs); } |

