diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-03-23 23:09:14 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-03-23 23:09:14 +0000 |
commit | a271174771adce635d29219225843ddb3fb17770 (patch) | |
tree | 2aa9ee56a826a532bd36833aa770cc9ca3b0fba7 | |
parent | fa256c6eee69f3a5c86baf0a15c920dee952971f (diff) | |
download | external_llvm-a271174771adce635d29219225843ddb3fb17770.zip external_llvm-a271174771adce635d29219225843ddb3fb17770.tar.gz external_llvm-a271174771adce635d29219225843ddb3fb17770.tar.bz2 |
Renamed NVdImmFrm to N1RegModImmFrm.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99344 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrFormats.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMInstrFormats.td b/lib/Target/ARM/ARMInstrFormats.td index d27da5b..604397c 100644 --- a/lib/Target/ARM/ARMInstrFormats.td +++ b/lib/Target/ARM/ARMInstrFormats.td @@ -60,7 +60,7 @@ def MiscFrm : Format<29>; def ThumbMiscFrm : Format<30>; def NLdStFrm : Format<31>; -def NVdImmFrm : Format<32>; +def N1RegModImmFrm : Format<32>; def NVdVmImmFrm : Format<33>; def NVdVmVCVTFrm : Format<34>; @@ -1538,7 +1538,7 @@ class N1ModImm<bit op23, bits<3> op21_19, bits<4> op11_8, bit op7, bit op6, dag oops, dag iops, InstrItinClass itin, string opc, string dt, string asm, string cstr, list<dag> pattern> - : NDataI<oops, iops, NVdImmFrm, itin, opc, dt, asm, cstr, pattern> { + : NDataI<oops, iops, N1RegModImmFrm, itin, opc, dt, asm, cstr, pattern> { let Inst{23} = op23; let Inst{21-19} = op21_19; let Inst{11-8} = op11_8; |