aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Pall <mike>2024-04-19 01:41:12 +0200
committerMike Pall <mike>2024-04-19 01:41:12 +0200
commitd032c637b1c1cf4a8cb4f52155459f6e91405bda (patch)
tree5347778221d22fa7dccaedc8b8aaba981c415fcc
parentf5affaa6c4e7524e661484f22f24255f9a83eb47 (diff)
downloadluajit-d032c637b1c1cf4a8cb4f52155459f6e91405bda.tar.gz
luajit-d032c637b1c1cf4a8cb4f52155459f6e91405bda.tar.bz2
luajit-d032c637b1c1cf4a8cb4f52155459f6e91405bda.zip
Fix compiler warning.
-rw-r--r--src/lj_asm_arm64.h2
1 files changed, 1 insertions, 1 deletions
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)
787 int destused = ra_used(ir); 787 int destused = ra_used(ir);
788 Reg dest = ra_dest(as, ir, allow); 788 Reg dest = ra_dest(as, ir, allow);
789 Reg tab = ra_alloc1(as, ir->op1, rset_clear(allow, dest)); 789 Reg tab = ra_alloc1(as, ir->op1, rset_clear(allow, dest));
790 Reg tmp = RID_TMP, type = RID_NONE, key, tkey; 790 Reg tmp = RID_TMP, type = RID_NONE, key = RID_NONE, tkey;
791 IRRef refkey = ir->op2; 791 IRRef refkey = ir->op2;
792 IRIns *irkey = IR(refkey); 792 IRIns *irkey = IR(refkey);
793 int isk = irref_isk(refkey); 793 int isk = irref_isk(refkey);