]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Handle SSE5.
authorJulian Seward <jseward@acm.org>
Fri, 3 Oct 2003 20:40:45 +0000 (20:40 +0000)
committerJulian Seward <jseward@acm.org>
Fri, 3 Oct 2003 20:40:45 +0000 (20:40 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1891

memcheck/mc_translate.c

index b2e3731fd6bf99cf7dfff1a86ef045e06b178ff3..ed1acbc57eda2a38ba2a7512b197500ec5324de7 100644 (file)
@@ -1135,8 +1135,10 @@ static UCodeBlock* memcheck_instrument ( UCodeBlock* cb_in )
             VG_(copy_UInstr)(cb, u_in);
            break;
          }
-         /* For FPU, MMX and SSE insns not referencing memory, just copy thru. */
-         case SSE4: case SSE3:
+
+         /* For FPU, MMX and SSE insns not referencing memory, just
+            copy thru. */
+         case SSE5: case SSE4: case SSE3:
          case MMX1: case MMX2: case MMX3:
          case FPU: 
             VG_(copy_UInstr)(cb, u_in);