# HG changeset patch # User Stefan Monnier # Date 1121232550 0 # Node ID 64b32564144f6332b94f69988ce46acb02d0be50 # Parent 5c7cbbd6dbb464fa539ade44b3469f058e2dd250 (MAYBE_GC): Use gc_cons_combined_threshold. diff -r 5c7cbbd6dbb4 -r 64b32564144f src/bytecode.c --- a/src/bytecode.c Wed Jul 13 05:28:37 2005 +0000 +++ b/src/bytecode.c Wed Jul 13 05:29:10 2005 +0000 @@ -355,13 +355,13 @@ /* Garbage collect if we have consed enough since the last time. We do this at every branch, to avoid loops that never GC. */ -#define MAYBE_GC() \ - if (consing_since_gc > gc_cons_threshold) \ - { \ - BEFORE_POTENTIAL_GC (); \ - Fgarbage_collect (); \ - AFTER_POTENTIAL_GC (); \ - } \ +#define MAYBE_GC() \ + if (consing_since_gc > gc_cons_combined_threshold) \ + { \ + BEFORE_POTENTIAL_GC (); \ + Fgarbage_collect (); \ + AFTER_POTENTIAL_GC (); \ + } \ else /* Check for jumping out of range. */