]> git.ipfire.org Git - thirdparty/LuaJIT.git/commitdiff
Fix compiler warning.
authorMike Pall <mike>
Thu, 18 Apr 2024 23:41:12 +0000 (01:41 +0200)
committerMike Pall <mike>
Thu, 18 Apr 2024 23:41:12 +0000 (01:41 +0200)
src/lj_asm_arm64.h

index 5b40f4cc1044a87285cfd885fbb60e73f94e36e0..0e5aee9a5aafab62aa910570219a7aff654f2121 100644 (file)
@@ -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);