More fetchdecode optimization

This commit is contained in:
Stanislav Shwartsman 2008-08-23 22:34:17 +00:00
parent d0803ebd10
commit 9a2072bba6

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: fetchdecode64.cc,v 1.210 2008-08-23 13:55:37 sshwarts Exp $
// $Id: fetchdecode64.cc,v 1.211 2008-08-23 22:34:17 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001 MandrakeSoft S.A.
@ -3797,20 +3797,6 @@ modrm_done:
return(0);
}
break;
case BxImmediate_IbIb:
if (ilen < remain) {
i->IxIxForm.Ib = *iptr++;
ilen++;
}
else return(0);
if (ilen < remain) {
i->IxIxForm.Ib2 = *iptr;
ilen++;
}
else {
return(0);
}
break;
case BxImmediate_IwIb:
if ((ilen+1) < remain) {
i->IxIxForm.Iw = FetchWORD(iptr);