From 2f4d59de0f782812792857a5edbf9423a3bb694d Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sun, 1 Sep 2019 07:13:23 -0600 Subject: [PATCH] remove unused binding original commit: a4732d58666d80e78af5e1cde4c796d3eeae20e7 --- c/gc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/c/gc.c b/c/gc.c index a300c29e01..0875e2a5ea 100644 --- a/c/gc.c +++ b/c/gc.c @@ -955,7 +955,6 @@ void GCENTRY(ptr tc, IGEN mcg, IGEN tg) { seginfo *oldspacesegments, *si, *nextsi; ptr ls; bucket_pointer_list *buckets_to_rebuild; - ptr locked_oldspace_objects; /* flush instruction cache: effectively clear_code_mod but safer */ for (ls = S_threads; ls != Snil; ls = Scdr(ls)) { @@ -1058,12 +1057,11 @@ void GCENTRY(ptr tc, IGEN mcg, IGEN tg) { } if (ls == Snil) { sorted_locked_objects = FIX(0); - locked_oldspace_objects = Snil; } else { ptr v, x, y; uptr i, n; /* dosort is destructive, so have to store the result back */ - locked_oldspace_objects = ls = dosort(ls, list_length(ls)); + ls = dosort(ls, list_length(ls)); /* create vector of smallest size n=2^k-1 that will fit all of the list's unique elements */