]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Merge from trunk, r2080 (Handle PCMPxSTRx $0x00.)
authorJulian Seward <jseward@acm.org>
Mon, 14 Feb 2011 13:39:47 +0000 (13:39 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 14 Feb 2011 13:39:47 +0000 (13:39 +0000)
git-svn-id: svn://svn.valgrind.org/vex/branches/VEX_3_6_BRANCH@2096

VEX/priv/guest_amd64_toIR.c
VEX/priv/guest_generic_x87.c

index af0b2d3b798899d0d24f58730fab1fbf1c8c9276..53df72a6b338fd0240334243e1f63fad10e7224e 100644 (file)
@@ -15583,6 +15583,7 @@ DisResult disInstr_AMD64_WRK (
          any cases for which the helper function has not been
          verified. */
       switch (imm) {
+         case 0x00:
          case 0x02: case 0x08: case 0x0A: case 0x0C: case 0x12:
          case 0x1A: case 0x3A: case 0x44: case 0x4A:
             break;
index 4204893bdd23c8a642ffee5ef67862f84bf070c7..306f66017cebaa4a921c407cdc038a5dc89f452e 100644 (file)
@@ -715,6 +715,7 @@ Bool compute_PCMPxSTRx ( /*OUT*/V128* resV,
       even if they would probably work.  Life is too short to have
       unvalidated cases in the code base. */
    switch (imm8) {
+      case 0x00:
       case 0x02: case 0x08: case 0x0A: case 0x0C: case 0x12:
       case 0x1A: case 0x3A: case 0x44: case 0x4A:
          break;