From 902d407d54b436a2f5ad5300acf63ff8e0660a77 Mon Sep 17 00:00:00 2001 From: Maxim Bolshov Date: Mon, 22 May 2023 16:22:46 +0300 Subject: [PATCH] Fix strictnoteqdyn handler Signed-off-by: Maxim Bolshov --- irtoc_scripts/interpreter_main_loop.irt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/irtoc_scripts/interpreter_main_loop.irt b/irtoc_scripts/interpreter_main_loop.irt index 1f0a87157..cb7e02763 100644 --- a/irtoc_scripts/interpreter_main_loop.irt +++ b/irtoc_scripts/interpreter_main_loop.irt @@ -50,9 +50,9 @@ when "ECMA_ASHR2DYN_PREF_V8" ecma_intrinsic_setacc("Ashr2Dyn", vreg_value(op[0]).any, acc.any) when "ECMA_STRICTEQDYN_PREF_V8" - acc := handle_ecma_stricteqdyn(vreg_value(op[0]).any, acc.any) + acc := handle_ecma_stricteqdyn(vreg_value(op[0]).any, acc) when "ECMA_STRICTNOTEQDYN_PREF_V8" - acc := handle_ecma_strictnoteqdyn(vreg_value(op[0]).any, acc.any) + acc := handle_ecma_strictnoteqdyn(vreg_value(op[0]).any, acc) when "ECMA_EQDYN_PREF_V8" acc := handle_ecma_eqdyn(vreg_value(op[0]).any, acc.any) #ecma_intrinsic_setacc("EqDyn", vreg_value(op[0]).u64, acc.u64) -- Gitee