From: Julian Seward Date: Fri, 3 Oct 2003 20:40:45 +0000 (+0000) Subject: Handle SSE5. X-Git-Tag: svn/VALGRIND_2_1_0~151 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3983cab629b2b370096feccafb45d0db41a70064;p=thirdparty%2Fvalgrind.git Handle SSE5. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1891 --- diff --git a/memcheck/mc_translate.c b/memcheck/mc_translate.c index b2e3731fd6..ed1acbc57e 100644 --- a/memcheck/mc_translate.c +++ b/memcheck/mc_translate.c @@ -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);