diff options
| author | Craig Topper <craig.topper@gmail.com> | 2012-03-04 03:33:22 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@gmail.com> | 2012-03-04 03:33:22 +0000 |
| commit | 420525ce3b93e43c5438c7d6f958084fcb6a02cc (patch) | |
| tree | b592d2156bea63aca7c3ec4bbe7bb4d936261e11 /llvm/lib/Target/X86/X86RegisterInfo.h | |
| parent | 6dedbae4297dc810263b7505845b94f0e59245c6 (diff) | |
| download | bcm5719-llvm-420525ce3b93e43c5438c7d6f958084fcb6a02cc.tar.gz bcm5719-llvm-420525ce3b93e43c5438c7d6f958084fcb6a02cc.zip | |
Use uint16_t to store registers in callee saved register tables to reduce size of static data.
llvm-svn: 151996
Diffstat (limited to 'llvm/lib/Target/X86/X86RegisterInfo.h')
| -rw-r--r-- | llvm/lib/Target/X86/X86RegisterInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86RegisterInfo.h b/llvm/lib/Target/X86/X86RegisterInfo.h index c9c1d973623..bee03936f1f 100644 --- a/llvm/lib/Target/X86/X86RegisterInfo.h +++ b/llvm/lib/Target/X86/X86RegisterInfo.h @@ -95,7 +95,7 @@ public: /// getCalleeSavedRegs - Return a null-terminated list of all of the /// callee-save registers on this target. - const unsigned *getCalleeSavedRegs(const MachineFunction* MF = 0) const; + const uint16_t *getCalleeSavedRegs(const MachineFunction* MF = 0) const; const uint32_t *getCallPreservedMask(CallingConv::ID) const; /// getReservedRegs - Returns a bitset indexed by physical register number |

