From 57fbe04565a97fdff93bfeab33a1f37481f76d58 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 10 Jun 1993 02:21:47 +0000 Subject: [PATCH] Missed a place max-offset should have been changed to tt-max-offset. --- compiler/codegen.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/codegen.lisp b/compiler/codegen.lisp index 465c678a1..ab073603e 100644 --- a/compiler/codegen.lisp +++ b/compiler/codegen.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/codegen.lisp,v 1.21 1993/05/28 05:22:19 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/codegen.lisp,v 1.22 1993/06/10 02:21:47 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -289,7 +289,7 @@ (state (cdr entry))) (declare (type index posn) (type tt-state state)) (assert (<= last-posn posn)) - (do ((offset (- posn last-posn) (- offset max-offset))) + (do ((offset (- posn last-posn) (- offset tt-max-offset))) ((< offset tt-max-offset) (push-entry offset state)) (push-entry tt-max-offset last-state)) -- GitLab