We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfa173b commit 704280fCopy full SHA for 704280f
src/lj_opt_mem.c
@@ -793,6 +793,7 @@ TRef LJ_FASTCALL lj_opt_dse_xstore(jit_State *J)
793
IRRef ref = *refp;
794
if (J->chain[IR_CALLXS] > lim) lim = J->chain[IR_CALLXS];
795
if (J->chain[IR_XBAR] > lim) lim = J->chain[IR_XBAR];
796
+ if (J->chain[IR_XSNEW] > lim) lim = J->chain[IR_XSNEW];
797
while (ref > lim) { /* Search for redundant or conflicting stores. */
798
IRIns *store = IR(ref);
799
switch (aa_xref(J, xr, fins, store)) {
0 commit comments