generate_interpreter: Don't stop after custom sse instructions (synchronised with check in generate_jit)

This commit is contained in:
Fabian 2020-12-31 19:14:28 -06:00
parent 0263764a5c
commit 732cc2ee1c

View file

@ -228,9 +228,8 @@ function gen_instruction_body_after_fixed_g(encoding, size)
const instruction_prefix = [];
const instruction_postfix =
(encoding.block_boundary && !encoding.no_block_boundary_in_interpreted) ||
(!encoding.custom && encoding.e) ||
encoding.sse ||
encoding.task_switch_test ? ["after_block_boundary();"] : [];
(!encoding.custom && encoding.e) ?
["after_block_boundary();"] : [];
if(encoding.task_switch_test || encoding.sse)
{