Trivial changes to avoid some compiler warnings.

This commit is contained in:
Edmund Grimley Evans
2015-11-19 18:26:47 +00:00
parent 553242c18a
commit ba99a70cd8
5 changed files with 12 additions and 9 deletions

View File

@ -77,7 +77,7 @@ enum {
TREG_ST0 = 24,
TREG_MEM = 0x20,
TREG_MEM = 0x20
};
#define REX_BASE(reg) (((reg) >> 3) & 1)
@ -1703,7 +1703,7 @@ int gtst(int inv, int t)
to our target if the result was unordered and test wasn't NE,
otherwise if unordered we don't want to jump. */
vtop->c.i &= ~0x100;
if (!inv == (vtop->c.i != TOK_NE))
if (inv == (vtop->c.i == TOK_NE))
o(0x067a); /* jp +6 */
else
{