summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoey Gouly <joey.gouly@arm.com>2013-07-18 09:34:35 +0000
committerJoey Gouly <joey.gouly@arm.com>2013-07-18 09:34:35 +0000
commitd46bb05e1ae484c491ea85527e45da86e78be658 (patch)
tree6b1f55b717ec9aa938142a793daca48f4e79860e /lib
parent764f6f51257a0669acc58c8e5b4b802a29069302 (diff)
downloadllvm-d46bb05e1ae484c491ea85527e45da86e78be658.tar.gz
llvm-d46bb05e1ae484c491ea85527e45da86e78be658.tar.bz2
llvm-d46bb05e1ae484c491ea85527e45da86e78be658.tar.xz
Remove the extra leading 0 from VMAXNMND.
The N3VDIntnp pattern takes bits<5> and I gave it 6 bits. Thanks to Jiangning Liu for spotting it! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186568 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMInstrNEON.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td
index f349f1033d..f389909b74 100644
--- a/lib/Target/ARM/ARMInstrNEON.td
+++ b/lib/Target/ARM/ARMInstrNEON.td
@@ -4682,7 +4682,7 @@ def VMAXfq : N3VQInt<0, 0, 0b00, 0b1111, 0, N3RegFrm, IIC_VBINQ,
// VMAXNM
let PostEncoderMethod = "NEONThumb2V8PostEncoder", DecoderNamespace = "v8NEON" in {
- def VMAXNMND : N3VDIntnp<0b000110, 0b00, 0b1111, 0, 1,
+ def VMAXNMND : N3VDIntnp<0b00110, 0b00, 0b1111, 0, 1,
N3RegFrm, NoItinerary, "vmaxnm", "f32",
v2f32, v2f32, int_arm_neon_vmaxnm, 1>,
Requires<[HasV8, HasNEON]>;