From 6be7e7a5cb88d188a1cb6f1708124132b1cbfd1a Mon Sep 17 00:00:00 2001 From: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com> Date: Tue, 19 Nov 2024 07:31:25 -0800 Subject: [PATCH] Update Compiler/src/Compiler.cpp --- Compiler/src/Compiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Compiler/src/Compiler.cpp b/Compiler/src/Compiler.cpp index 41ce9f2b..6b908c27 100644 --- a/Compiler/src/Compiler.cpp +++ b/Compiler/src/Compiler.cpp @@ -1635,7 +1635,7 @@ struct Compiler { uint8_t rr = compileExprAuto(expr->right, rs); - bytecode.emitABC(getBinaryOpArith(expr->op, /* k= */ true), target, uint8_t(rr), uint8_t(lc)); + bytecode.emitABC(getBinaryOpArith(expr->op, /* k= */ true), target, rr, uint8_t(lc)); hintTemporaryExprRegType(expr->right, rr, LBC_TYPE_NUMBER, /* instLength */ 1); return;