From: Mike Pall Date: Thu, 18 Apr 2024 23:41:12 +0000 (+0200) Subject: Fix compiler warning. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d032c637b1c1cf4a8cb4f52155459f6e91405bda;p=thirdparty%2FLuaJIT.git Fix compiler warning. --- diff --git a/src/lj_asm_arm64.h b/src/lj_asm_arm64.h index 5b40f4cc..0e5aee9a 100644 --- a/src/lj_asm_arm64.h +++ b/src/lj_asm_arm64.h @@ -787,7 +787,7 @@ static void asm_href(ASMState *as, IRIns *ir, IROp merge) int destused = ra_used(ir); Reg dest = ra_dest(as, ir, allow); Reg tab = ra_alloc1(as, ir->op1, rset_clear(allow, dest)); - Reg tmp = RID_TMP, type = RID_NONE, key, tkey; + Reg tmp = RID_TMP, type = RID_NONE, key = RID_NONE, tkey; IRRef refkey = ir->op2; IRIns *irkey = IR(refkey); int isk = irref_isk(refkey);