diff options
-rw-r--r-- | src/lj_asm_x86.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lj_asm_x86.h b/src/lj_asm_x86.h index b6754cfa..fceb1877 100644 --- a/src/lj_asm_x86.h +++ b/src/lj_asm_x86.h | |||
@@ -1065,7 +1065,8 @@ static void asm_tvptr(ASMState *as, Reg dest, IRRef ref) | |||
1065 | emit_u32(as, irt_toitype(ir->t) << 15); | 1065 | emit_u32(as, irt_toitype(ir->t) << 15); |
1066 | emit_rmro(as, XO_ARITHi, XOg_OR, dest, 4); | 1066 | emit_rmro(as, XO_ARITHi, XOg_OR, dest, 4); |
1067 | } else { | 1067 | } else { |
1068 | emit_movmroi(as, dest, 4, (irt_toitype(ir->t) << 15) | 0x7fff); | 1068 | /* Currently, no caller passes integers that might end up here. */ |
1069 | emit_movmroi(as, dest, 4, (irt_toitype(ir->t) << 15)); | ||
1069 | } | 1070 | } |
1070 | emit_movtomro(as, REX_64IR(ir, src), dest, 0); | 1071 | emit_movtomro(as, REX_64IR(ir, src), dest, 0); |
1071 | } | 1072 | } |