From 590582be393b7715d2cf74099934579136a03de0 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Tue, 23 Jun 1992 14:56:58 +0000
Subject: [PATCH] Changed the type of *TOTAL-BYTES-CONSED* from fixnum to
 integer because it is very easy to cons more than most-positive-fixnum bytes.
  It just takes a while.

---
 code/gc.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/gc.lisp b/code/gc.lisp
index ef651af7b..4ebfec996 100644
--- a/code/gc.lisp
+++ b/code/gc.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/gc.lisp,v 1.14 1992/03/29 21:37:24 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/gc.lisp,v 1.15 1992/06/23 14:56:58 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -135,7 +135,7 @@
 (defvar *total-bytes-consed* 0)
 
 (declaim (type (or index null) *last-bytes-in-use*))
-(declaim (type index *total-bytes-consed*))
+(declaim (type integer *total-bytes-consed*))
 
 ;;; GET-BYTES-CONSED -- Exported
 ;;; 
-- 
GitLab