From 0abb24821d69338dcea7df58700ce399262aed9f Mon Sep 17 00:00:00 2001 From: dzaima Date: Mon, 16 Aug 2021 01:28:05 +0300 Subject: [PATCH] fix SETH in JIT too --- src/jit/nvm_x86_64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jit/nvm_x86_64.c b/src/jit/nvm_x86_64.c index 0c0ccec9..7640b73c 100644 --- a/src/jit/nvm_x86_64.c +++ b/src/jit/nvm_x86_64.c @@ -125,7 +125,7 @@ INS B i_SETM(B s, B f, B x, Scope** pscs, u32* bc) { POS_UPD; return r; } INS void i_SETH(B s, B x, Scope** pscs, u32* bc) { POS_UPD; - bool ok = v_seth(pscs, s, x); + bool ok = v_seth(pscs, s, x); dec(x); dec(s); if (!ok) thrM("VM: Header fallback NYI"); } INS B i_SETNi( B x, Scope* sc, u32 p, u32* bc) { POS_UPD; v_setI(sc, p, inc(x), false); return x; }