From: Nicholas Nethercote Date: Sun, 29 Jun 2003 17:28:23 +0000 (+0000) Subject: Added (trivially) "XCHG eAX,eSP" instruction. X-Git-Tag: svn/VALGRIND_2_0_0~73 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=752b7a599c61ffc76fe22bc960e79a72e5467ed8;p=thirdparty%2Fvalgrind.git Added (trivially) "XCHG eAX,eSP" instruction. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1711 --- diff --git a/coregrind/vg_to_ucode.c b/coregrind/vg_to_ucode.c index 1b0f68b1cb..c2272ab757 100644 --- a/coregrind/vg_to_ucode.c +++ b/coregrind/vg_to_ucode.c @@ -5499,6 +5499,7 @@ static Addr disInstr ( UCodeBlock* cb, Addr eip, Bool* isEnd ) case 0x91: /* XCHG eAX,eCX */ case 0x92: /* XCHG eAX,eDX */ case 0x93: /* XCHG eAX,eBX */ + case 0x94: /* XCHG eAX,eSP */ case 0x96: /* XCHG eAX,eSI */ case 0x97: /* XCHG eAX,eDI */ codegen_xchg_eAX_Reg ( cb, sz, opc - 0x90 );