From: Nicholas Nethercote Date: Thu, 4 Sep 2003 21:12:22 +0000 (+0000) Subject: Trivial assertion fix -- the SSE3 instructions can be of size 8. X-Git-Tag: svn/VALGRIND_2_1_0~207 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=65461f04274c28e524a69c0c0da6950feca27fab;p=thirdparty%2Fvalgrind.git Trivial assertion fix -- the SSE3 instructions can be of size 8. MERGE TO STABLE git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1811 --- diff --git a/memcheck/mc_translate.c b/memcheck/mc_translate.c index 282126604a..a13537f799 100644 --- a/memcheck/mc_translate.c +++ b/memcheck/mc_translate.c @@ -1089,7 +1089,7 @@ static UCodeBlock* memcheck_instrument ( UCodeBlock* cb_in ) Bool is_load; Int t_size; - sk_assert(u_in->size == 4 || u_in->size == 16); + sk_assert(u_in->size == 4 || u_in->size == 8 || u_in->size == 16); t_size = INVALID_TEMPREG; is_load = u_in->opcode==SSE2a_MemRd