diff options
-rw-r--r-- | src/lj_asm_x86.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_asm_x86.h b/src/lj_asm_x86.h index 1222284d..241da5a1 100644 --- a/src/lj_asm_x86.h +++ b/src/lj_asm_x86.h | |||
@@ -2084,7 +2084,7 @@ static void asm_comp(ASMState *as, IRIns *ir, uint32_t cc) | |||
2084 | Reg r64 = REX_64IR(ir, 0); | 2084 | Reg r64 = REX_64IR(ir, 0); |
2085 | int32_t imm = 0; | 2085 | int32_t imm = 0; |
2086 | lua_assert(irt_is64(ir->t) || irt_isint(ir->t) || | 2086 | lua_assert(irt_is64(ir->t) || irt_isint(ir->t) || |
2087 | irt_isu32(ir->t) || irt_isaddr(ir->t)); | 2087 | irt_isu32(ir->t) || irt_isaddr(ir->t) || irt_isu8(ir->t)); |
2088 | /* Swap constants (only for ABC) and fusable loads to the right. */ | 2088 | /* Swap constants (only for ABC) and fusable loads to the right. */ |
2089 | if (irref_isk(lref) || (!irref_isk(rref) && opisfusableload(leftop))) { | 2089 | if (irref_isk(lref) || (!irref_isk(rref) && opisfusableload(leftop))) { |
2090 | if ((cc & 0xc) == 0xc) cc ^= 0x53; /* L <-> G, LE <-> GE */ | 2090 | if ((cc & 0xc) == 0xc) cc ^= 0x53; /* L <-> G, LE <-> GE */ |