From 183b48737b47da20e4c63275eed17503a20251a7 Mon Sep 17 00:00:00 2001 From: Peter Bex Date: Tue, 14 Apr 2020 21:41:26 +0200 Subject: [PATCH 3/6] Remove a few unused variables from rereclaim() --- runtime.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/runtime.c b/runtime.c index ac6abb7c..f6773e9c 100644 --- a/runtime.c +++ b/runtime.c @@ -3807,11 +3807,10 @@ static C_regparm void C_fcall really_mark(C_word *x, C_byte *tgt_space_start, C_ C_regparm void C_fcall C_rereclaim2(C_uword size, int relative_resize) { - int i, j; - C_uword count, n, bytes; - C_word *p, **msp, bucket, last; + int i; + C_uword n, bytes; + C_word *p, **msp, last; C_header h; - C_byte *tmp, *start; LF_LIST *lfn; C_SCHEME_BLOCK *bp; C_GC_ROOT *gcrp; -- 2.20.1