]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Print 8 insn bytes when failing, not 6.
authorJulian Seward <jseward@acm.org>
Mon, 17 Jan 2011 11:58:47 +0000 (11:58 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 17 Jan 2011 11:58:47 +0000 (11:58 +0000)
git-svn-id: svn://svn.valgrind.org/vex/trunk@2077

VEX/priv/guest_amd64_toIR.c

index da85c4961a7422e1af10791484a38f85e22120b4..d910af9d175b31432d748a8a5d039542a4745907 100644 (file)
@@ -18392,13 +18392,15 @@ DisResult disInstr_AMD64_WRK (
   decode_failure:
    /* All decode failures end up here. */
    vex_printf("vex amd64->IR: unhandled instruction bytes: "
-              "0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
+              "0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
               (Int)getUChar(delta_start+0),
               (Int)getUChar(delta_start+1),
               (Int)getUChar(delta_start+2),
               (Int)getUChar(delta_start+3),
               (Int)getUChar(delta_start+4),
-              (Int)getUChar(delta_start+5) );
+              (Int)getUChar(delta_start+5),
+              (Int)getUChar(delta_start+6),
+              (Int)getUChar(delta_start+7) );
 
    /* Tell the dispatcher that this insn cannot be decoded, and so has
       not been executed, and (is currently) the next to be executed.