summaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gc.c b/gc.c
index a553a81c..4965066a 100644
--- a/gc.c
+++ b/gc.c
@@ -174,7 +174,6 @@ val make_obj(void)
gc_enabled)
{
gc();
- prev_malloc_bytes = malloc_bytes;
}
if (freshobj_idx >= FRESHOBJ_VEC_SIZE)
@@ -182,7 +181,6 @@ val make_obj(void)
#else
if ((opt_gc_debug || malloc_delta >= opt_gc_delta) && gc_enabled) {
gc();
- prev_malloc_bytes = malloc_bytes;
}
#endif
@@ -695,6 +693,7 @@ void gc(void)
#endif
call_finals();
gc_enabled = 1;
+ prev_malloc_bytes = malloc_bytes;
}
int gc_state(int enabled)