|
From: Nicholas N. <nj...@ca...> - 2004-04-26 13:06:22
|
CVS commit by nethercote:
Add missing SSE case for Memcheck's instrumentation (sigh).
M +2 -1 mc_translate.c 1.41
--- valgrind/memcheck/mc_translate.c #1.40:1.41
@@ -1111,5 +1111,6 @@ static UCodeBlock* memcheck_instrument (
/* 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,
|