From 777d363e38aee3e5d6974200b3d772b48448ba21 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Thu, 12 Dec 1991 14:59:03 +0000 Subject: [PATCH] Moved code for determining whether named constants can be referenced directly to LEGAL-IMMEDIATE-CONSTANT-P in LTN from IR2-CONVERT-REF, since we must pick off potentially delayed constants there. --- compiler/ir2tran.lisp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/compiler/ir2tran.lisp b/compiler/ir2tran.lisp index 644802a92..3fd6515bf 100644 --- a/compiler/ir2tran.lisp +++ b/compiler/ir2tran.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/ir2tran.lisp,v 1.38 1991/12/12 12:41:48 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir2tran.lisp,v 1.39 1991/12/12 14:59:03 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -161,11 +161,7 @@ (vop value-cell-ref node block tn res) (emit-move node block tn res)))) (constant - (if (or (null name) - (typecase (constant-value leaf) - ((or number character) t) - (symbol (symbol-package (constant-value leaf))) - (t nil))) + (if (legal-immediate-constant-p leaf) (emit-move node block (constant-tn leaf) res) (let ((name-tn (emit-constant name))) (if (policy node (zerop safety)) -- GitLab