]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix incorrect handling of VTRN.32 insn. (Dmitry Zhurikhin, zhur@ispras.ru)
authorJulian Seward <jseward@acm.org>
Wed, 22 Sep 2010 16:27:08 +0000 (16:27 +0000)
committerJulian Seward <jseward@acm.org>
Wed, 22 Sep 2010 16:27:08 +0000 (16:27 +0000)
git-svn-id: svn://svn.valgrind.org/vex/trunk@2039

VEX/priv/guest_arm_toIR.c

index 7560f1e6b46ab2a09419aeb87943d6ed682903ba..fcff7cb0dcb9f760e18b5733318e00f0006a6617 100644 (file)
@@ -7153,8 +7153,8 @@ Bool dis_neon_data_2reg_misc ( UInt theInstr, IRTemp condT )
                      op_hi = Iop_InterleaveEvenLanes16x4;
                      break;
                   case 2:
-                     op_lo = Iop_InterleaveHI32x2;
-                     op_hi = Iop_InterleaveLO32x2;
+                     op_lo = Iop_InterleaveLO32x2;
+                     op_hi = Iop_InterleaveHI32x2;
                      break;
                   case 3:
                      return False;