Skip to content

Commit

Permalink
Fixup "Fix signedness mismatches with bytecode definition in spesh"
Browse files Browse the repository at this point in the history
Missed to places where I needed to replace the variable.
  • Loading branch information
niner committed Nov 28, 2019
1 parent 4f4c304 commit 6120564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spesh/stats.c
Expand Up @@ -499,7 +499,7 @@ static void save_or_free_sim_stack(MVMThreadContext *tc, MVMSpeshSimStack *sims,
* away. */
j = sims->used - 1;
while (j >= 0) {
incorporate_stats(tc, &(sims->frames[i]), first_survivor + i,
incorporate_stats(tc, &(sims->frames[j]), first_survivor + j,
j > 0 ? &(sims->frames[j - 1]) : NULL,
sf_updated);
j--;
Expand Down

0 comments on commit 6120564

Please sign in to comment.