diff options
author | Akira Hatanaka <ahatanak@gmail.com> | 2011-09-22 18:24:21 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanak@gmail.com> | 2011-09-22 18:24:21 +0000 |
commit | ebb90dbb54a3ac7062080953b8af03e9ee5e788a (patch) | |
tree | 7955d351cdb2d9836e7c236644db29f812f780ab | |
parent | 95a091a0b65d1b4a27eedd9a0c96da319209b686 (diff) |
Change subreg index of AFPR64 from sub_fpeven to sub_32 per Jakob's comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140324 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/Mips/MipsRegisterInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Mips/MipsRegisterInfo.td b/lib/Target/Mips/MipsRegisterInfo.td index 62210210dd..014d9b258f 100644 --- a/lib/Target/Mips/MipsRegisterInfo.td +++ b/lib/Target/Mips/MipsRegisterInfo.td @@ -48,7 +48,7 @@ class AFPR<bits<5> num, string n, list<Register> subregs> class AFPR64<bits<5> num, string n, list<Register> subregs> : MipsRegWithSubRegs<n, subregs> { let Num = num; - let SubRegIndices = [sub_fpeven]; + let SubRegIndices = [sub_32]; } // Mips Hardware Registers |