diff options
author | Owen Anderson <resistor@mac.com> | 2010-12-10 22:32:08 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-12-10 22:32:08 +0000 |
commit | ac00e9627388e31a5704bc3e3430ffd0631bb1fe (patch) | |
tree | 78f2b9026e06bb08e9d3ef32dca18d8df347b43b | |
parent | dd479e9769eceee9fcc34e2173376024f3aa3c5f (diff) |
Provide the necessary post-encoder hook for Thumb2 encodings of VMOV and friends.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121585 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrFormats.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMInstrFormats.td b/lib/Target/ARM/ARMInstrFormats.td index a035cca8ca..243c7e2c4a 100644 --- a/lib/Target/ARM/ARMInstrFormats.td +++ b/lib/Target/ARM/ARMInstrFormats.td @@ -1517,6 +1517,7 @@ class NDataXI<dag oops, dag iops, Format f, InstrItinClass itin, : NeonXI<oops, iops, AddrModeNone, IndexModeNone, f, itin, opc, asm, cstr, pattern> { let Inst{31-25} = 0b1111001; + let PostEncoderMethod = "NEONThumb2DataIPostEncoder"; } // NEON "one register and a modified immediate" format. |