diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-03-19 17:39:00 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-03-19 17:39:00 +0000 |
commit | 81f04d59f6216d0e105daa9bde2250ca6af35fa5 (patch) | |
tree | 9e0a8937e8998422c009c9de5e215020f6225aa6 /lib/Target/ARM/ARMInstrFormats.td | |
parent | d4d4a90a8c1ec76bb572cfeb4fadcad329b8cab9 (diff) | |
download | external_llvm-81f04d59f6216d0e105daa9bde2250ca6af35fa5.zip external_llvm-81f04d59f6216d0e105daa9bde2250ca6af35fa5.tar.gz external_llvm-81f04d59f6216d0e105daa9bde2250ca6af35fa5.tar.bz2 |
Renumber LdStExFrm from 28 to 11 and shift the existing format values to make
room for it. This is in preparation for another patch which is adding NEON
subformats to facilitate disassembly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98967 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMInstrFormats.td')
-rw-r--r-- | lib/Target/ARM/ARMInstrFormats.td | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/lib/Target/ARM/ARMInstrFormats.td b/lib/Target/ARM/ARMInstrFormats.td index d754579..f0816e1 100644 --- a/lib/Target/ARM/ARMInstrFormats.td +++ b/lib/Target/ARM/ARMInstrFormats.td @@ -33,28 +33,28 @@ def LdMiscFrm : Format<8>; def StMiscFrm : Format<9>; def LdStMulFrm : Format<10>; -def LdStExFrm : Format<28>; - -def ArithMiscFrm : Format<11>; -def ExtFrm : Format<12>; - -def VFPUnaryFrm : Format<13>; -def VFPBinaryFrm : Format<14>; -def VFPConv1Frm : Format<15>; -def VFPConv2Frm : Format<16>; -def VFPConv3Frm : Format<17>; -def VFPConv4Frm : Format<18>; -def VFPConv5Frm : Format<19>; -def VFPLdStFrm : Format<20>; -def VFPLdStMulFrm : Format<21>; -def VFPMiscFrm : Format<22>; - -def ThumbFrm : Format<23>; - -def NEONFrm : Format<24>; -def NEONGetLnFrm : Format<25>; -def NEONSetLnFrm : Format<26>; -def NEONDupFrm : Format<27>; +def LdStExFrm : Format<11>; + +def ArithMiscFrm : Format<12>; +def ExtFrm : Format<13>; + +def VFPUnaryFrm : Format<14>; +def VFPBinaryFrm : Format<15>; +def VFPConv1Frm : Format<16>; +def VFPConv2Frm : Format<17>; +def VFPConv3Frm : Format<18>; +def VFPConv4Frm : Format<19>; +def VFPConv5Frm : Format<20>; +def VFPLdStFrm : Format<21>; +def VFPLdStMulFrm : Format<22>; +def VFPMiscFrm : Format<23>; + +def ThumbFrm : Format<24>; + +def NEONFrm : Format<25>; +def NEONGetLnFrm : Format<26>; +def NEONSetLnFrm : Format<27>; +def NEONDupFrm : Format<28>; def MiscFrm : Format<29>; def ThumbMiscFrm : Format<30>; |