Drop frame clearing in exit handling and JIT compiled code.

This commit is contained in:
Mike Pall
2010-02-11 01:50:32 +01:00
parent ab90b8fc2b
commit 565eb39574
2 changed files with 1 additions and 21 deletions

View File

@@ -229,10 +229,6 @@ void lj_snap_restore(jit_State *J, void *exptr)
o = L->top;
}
fs = o + framesize;
if (s == 0) /* Only partially clear tail call frame at #0. */
o = &frame[nslots];
while (o < fs) /* Clear slots of newly added frames. */
setnilV(o++);
}
}
}