Browse Source

emitter: Remove unnecessary else keywords

pull/15/merge
Lioncash 11 years ago
parent
commit
a796149c42
  1. 10
      src/common/x64/emitter.cpp

10
src/common/x64/emitter.cpp

@ -1376,9 +1376,9 @@ static int GetVEXmmmmm(u16 op)
// Currently, only 0x38 and 0x3A are used as secondary escape byte.
if ((op >> 8) == 0x3A)
return 3;
else if ((op >> 8) == 0x38)
if ((op >> 8) == 0x38)
return 2;
else
return 1;
}
@ -1386,11 +1386,11 @@ static int GetVEXpp(u8 opPrefix)
{
if (opPrefix == 0x66)
return 1;
else if (opPrefix == 0xF3)
if (opPrefix == 0xF3)
return 2;
else if (opPrefix == 0xF2)
if (opPrefix == 0xF2)
return 3;
else
return 0;
}

Loading…
Cancel
Save