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 | b538a22762368fb802e2ee60f70d500402c8bdb7 (patch) | |
tree | 3eac0891f1ec2c31671cbc11a1a8010c6be63831 /llvm/lib | |
parent | 4d7432ebf1b4b81b00793ad4b7f5bb4403742a16 (diff) | |
download | bcm5719-llvm-b538a22762368fb802e2ee60f70d500402c8bdb7.tar.gz bcm5719-llvm-b538a22762368fb802e2ee60f70d500402c8bdb7.zip |
Provide the necessary post-encoder hook for Thumb2 encodings of VMOV and friends.
llvm-svn: 121585
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/ARMInstrFormats.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrFormats.td b/llvm/lib/Target/ARM/ARMInstrFormats.td index a035cca8cac..243c7e2c4ae 100644 --- a/llvm/lib/Target/ARM/ARMInstrFormats.td +++ b/llvm/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. |