~ chicken-core (chicken-5) 183b48737b47da20e4c63275eed17503a20251a7
commit 183b48737b47da20e4c63275eed17503a20251a7
Author: Peter Bex <peter@more-magic.net>
AuthorDate: Tue Apr 14 21:41:26 2020 +0200
Commit: Peter Bex <peter@more-magic.net>
CommitDate: Tue Apr 14 21:41:26 2020 +0200
Remove a few unused variables from rereclaim()
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;
Trap