]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Add missing SSE case for Memcheck's instrumentation (sigh).
authorNicholas Nethercote <n.nethercote@gmail.com>
Mon, 26 Apr 2004 13:06:16 +0000 (13:06 +0000)
committerNicholas Nethercote <n.nethercote@gmail.com>
Mon, 26 Apr 2004 13:06:16 +0000 (13:06 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2389

memcheck/mc_translate.c

index 6dfbee4a1902691f3d00e0d44ff9b9cbd2a16a9a..641e6d29836eb7601da91d3597188c55e569c10c 100644 (file)
@@ -1110,7 +1110,8 @@ static UCodeBlock* memcheck_instrument ( UCodeBlock* cb_in )
             }
 
             /* Is it a read ?  Better check the V bits right now. */
-            if ( u_in->opcode == SSE3e_RegRd
+            if ( u_in->opcode == SSE2e1_RegRd
+                 || u_in->opcode == SSE3e_RegRd
                  || u_in->opcode == SSE3e1_RegRd )
               uInstr1(cb, TESTV, u_in->size, 
                            TempReg, SHADOW(u_in->val3));