The branch "master" has been updated in SBCL:
via 48e74a97b0253ba50d20ae3efc368dbc8b43b932 (commit)
from 30853a9bf1669e85d6726ff181d69bb2ac753dc3 (commit)
- Log -----------------------------------------------------------------
commit 48e74a97b0253ba50d20ae3efc368dbc8b43b932
Author: Nikodemus Siivola <nikodemus@...>
Date: Fri Nov 25 16:24:35 2011 +0200
cleanup: unused variable in gc_free_heap
---
src/runtime/gencgc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/runtime/gencgc.c b/src/runtime/gencgc.c
index 3009904..9ba41fb 100644
--- a/src/runtime/gencgc.c
+++ b/src/runtime/gencgc.c
@@ -3996,7 +3996,7 @@ gc_free_heap(void)
for (page = 0; page < page_table_pages; page++) {
/* Skip free pages which should already be zero filled. */
if (page_allocated_p(page)) {
- void *page_start, *addr;
+ void *page_start;
for (last_page = page;
(last_page < page_table_pages) && page_allocated_p(last_page);
last_page++) {
-----------------------------------------------------------------------
hooks/post-receive
--
SBCL
|