Update Compiler/src/Compiler.cpp

This commit is contained in:
vegorov-rbx 2024-11-19 07:31:25 -08:00 committed by GitHub
parent 859475d315
commit 6be7e7a5cb
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -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;