diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-09 07:53:28 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-09 07:53:28 -0700 |
commit | 91d4184615878babd7c8c3675418c5421b5e663c (patch) | |
tree | 15d9c1f51c2a6a87903e68a211a64135e96b000e /gc.c | |
parent | d682e4e1b074ffa4315b67a56109ef648931883c (diff) | |
download | txr-91d4184615878babd7c8c3675418c5421b5e663c.tar.gz txr-91d4184615878babd7c8c3675418c5421b5e663c.tar.bz2 txr-91d4184615878babd7c8c3675418c5421b5e663c.zip |
Remove useless mark_makefresh hack.
This contraption doesn't actually do anything.
* gc.c (mark_makefresh): Static variable removed.
(mark_obj): Remove logic conditional no mark_makefresh.
(prepare_finals): Remove setting of mark_makefresh.
(call_finals): Remove clearing of mark_makefresh.
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 13 |
1 files changed, 1 insertions, 12 deletions
@@ -98,7 +98,6 @@ static int mutobj_idx; static val freshobj[FRESHOBJ_VEC_SIZE]; static int freshobj_idx; int full_gc; -static int mark_makefresh; #endif #if EXTRA_DEBUGGING @@ -304,9 +303,7 @@ tail_call: abort(); #if CONFIG_GEN_GC - if (mark_makefresh) - obj->t.gen = -1; /* Will be put into freshobj by sweep_one */ - else if (obj->t.gen == -1) + if (obj->t.gen == -1) obj->t.gen = 0; /* Will be promoted to generation 1 by sweep_one */ #endif @@ -622,10 +619,6 @@ static void prepare_finals(void) if (!final_list) return; -#if CONFIG_GEN_GC - mark_makefresh = 1; -#endif - for (f = final_list; f; f = f->next) f->reachable = is_reachable(f->obj); @@ -646,10 +639,6 @@ static void call_finals(void) final_list = 0; final_tail = &final_list; -#if CONFIG_GEN_GC - mark_makefresh = 0; -#endif - for (f = old_list; f; f = next) { next = f->next; |