diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-03-24 18:46:34 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-03-24 18:46:34 +0000 |
commit | 7d85ac09f864bd0756c2a5be781e14b41b7521e6 (patch) | |
tree | b093fdc8a3b4217c42807d56a7b2031dc05c539f /lib | |
parent | 35075a7e81338c0eea00d1bac6e0d4ffb9c82c82 (diff) | |
download | external_llvm-7d85ac09f864bd0756c2a5be781e14b41b7521e6.tar.gz external_llvm-7d85ac09f864bd0756c2a5be781e14b41b7521e6.tar.bz2 external_llvm-7d85ac09f864bd0756c2a5be781e14b41b7521e6.zip |
Reverted r99376. The disassembler will deal with the 2-reg format of these two
N3VX instructions using special case code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99409 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMInstrNEON.td | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td index dd0e3daac7..7f0fdad5ab 100644 --- a/lib/Target/ARM/ARMInstrNEON.td +++ b/lib/Target/ARM/ARMInstrNEON.td @@ -2778,13 +2778,10 @@ def VSWPq : N2VX<0b11, 0b11, 0b00, 0b10, 0b00000, 1, 0, // VMOV : Vector Move (Register) -// Mark these as 2-register instructions to help the disassembler. -let F = N2RegFrm, Form = N2RegFrm.Value in { def VMOVDneon: N3VX<0, 0, 0b10, 0b0001, 0, 1, (outs DPR:$dst), (ins DPR:$src), IIC_VMOVD, "vmov", "$dst, $src", "", []>; def VMOVQ : N3VX<0, 0, 0b10, 0b0001, 1, 1, (outs QPR:$dst), (ins QPR:$src), IIC_VMOVD, "vmov", "$dst, $src", "", []>; -} // VMOV : Vector Move (Immediate) |