From 0999448ad515ff54d1034b6be90365c2ddf0a03f Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 1 Sep 1993 03:18:32 +0000 Subject: [PATCH] Oops, need to actually stick the value-cell in the constants pool, instead of just computing it and dropping it on the floor. --- compiler/generic/core.lisp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/compiler/generic/core.lisp b/compiler/generic/core.lisp index 5c803e889..4104694c9 100644 --- a/compiler/generic/core.lisp +++ b/compiler/generic/core.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/generic/core.lisp,v 1.27 1993/08/31 07:41:17 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/core.lisp,v 1.28 1993/09/01 03:18:32 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -186,12 +186,13 @@ (setf (code-header-ref code-obj index) (lisp::fdefinition-object (cdr const) t))) (:dylan-varinfo-value - (locally - (declare (optimize (inhibit-warnings 3))) - (dylan::lookup-varinfo-value - (cadr const) - (dylan::find-module (cddr const)) - t)))))))))) + (setf (code-header-ref code-obj index) + (locally + (declare (optimize (inhibit-warnings 3))) + (dylan::lookup-varinfo-value + (cadr const) + (dylan::find-module (cddr const)) + t))))))))))) (undefined-value)) -- GitLab