diff options
| author | Craig Topper <craig.topper@gmail.com> | 2012-03-11 07:57:25 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@gmail.com> | 2012-03-11 07:57:25 +0000 |
| commit | c5eaae4e9bc75b203b3a9922b480729bc4f340e2 (patch) | |
| tree | f6bf9cd03d9a6fbae271ff2cb2b16c9454b573a0 /lib/Target/ARM/ARMISelLowering.cpp | |
| parent | b78ca423844f19f4a838abb49b4b4fa7ae499707 (diff) | |
Convert more static tables of registers used by calling convention to uint16_t to reduce space.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152538 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMISelLowering.cpp')
| -rw-r--r-- | lib/Target/ARM/ARMISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp index 477b5f4170..5fe5a76ca4 100644 --- a/lib/Target/ARM/ARMISelLowering.cpp +++ b/lib/Target/ARM/ARMISelLowering.cpp @@ -87,7 +87,7 @@ namespace { } // The APCS parameter registers. -static const unsigned GPRArgRegs[] = { +static const uint16_t GPRArgRegs[] = { ARM::R0, ARM::R1, ARM::R2, ARM::R3 }; |
