diff options
author | Mike Pall <mike> | 2010-04-25 03:32:29 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2010-04-25 03:32:29 +0200 |
commit | 721b73fecbbeda5b5cb76628511c5b3fac41eb4d (patch) | |
tree | ce72efaa313ab16eda652e4d277413c31a8d2af3 /src/lj_func.c | |
parent | 3a32bbc7cb5c2287e8d4e24e362281c165f50976 (diff) | |
download | luajit-721b73fecbbeda5b5cb76628511c5b3fac41eb4d.tar.gz luajit-721b73fecbbeda5b5cb76628511c5b3fac41eb4d.tar.bz2 luajit-721b73fecbbeda5b5cb76628511c5b3fac41eb4d.zip |
Turn traces into true GC objects (GCtrace).
Diffstat (limited to 'src/lj_func.c')
-rw-r--r-- | src/lj_func.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lj_func.c b/src/lj_func.c index 3766b25e..1f5c3240 100644 --- a/src/lj_func.c +++ b/src/lj_func.c | |||
@@ -19,7 +19,6 @@ | |||
19 | 19 | ||
20 | void LJ_FASTCALL lj_func_freeproto(global_State *g, GCproto *pt) | 20 | void LJ_FASTCALL lj_func_freeproto(global_State *g, GCproto *pt) |
21 | { | 21 | { |
22 | lj_trace_freeproto(g, pt); | ||
23 | lj_mem_free(g, pt, pt->sizept); | 22 | lj_mem_free(g, pt, pt->sizept); |
24 | } | 23 | } |
25 | 24 | ||