commit | 201cfcd6de70f45174567572028b6e53f7e7d92b | [log] [tgz] |
---|---|---|
author | Tanya Lattner <tonic@nondot.org> | Thu Jun 02 21:25:24 2011 +0000 |
committer | Tanya Lattner <tonic@nondot.org> | Thu Jun 02 21:25:24 2011 +0000 |
tree | d5bd301238e2bbaff6cacc1dcc66aeaf4412f3db | |
parent | 70d893e84b0de21205ad042c6c00148d0e3cd74e [diff] |
Fix encoding for VEXTdf. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132486 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td index 2f8912f..79d95d9 100644 --- a/lib/Target/ARM/ARMInstrNEON.td +++ b/lib/Target/ARM/ARMInstrNEON.td
@@ -4703,8 +4703,9 @@ let Inst{9-8} = 0b00; } def VEXTdf : VEXTd<"vext", "32", v2f32> { - let Inst{11} = index{0}; - let Inst{10-8} = 0b000; + let Inst{11-10} = index{1-0}; + let Inst{9-8} = 0b00; + } def VEXTq8 : VEXTq<"vext", "8", v16i8> {