From 209d38b047de6e01a4a6a485ff17e72fb8eb6f77 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Thu, 12 Dec 1991 12:41:48 +0000
Subject: [PATCH] Fixed ir2-convert-reference to use symbol-value for unknown
 typed constants instead of using the value directly.

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

diff --git a/compiler/ir2tran.lisp b/compiler/ir2tran.lisp
index c76307608..644802a92 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.37 1991/12/11 17:12:33 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir2tran.lisp,v 1.38 1991/12/12 12:41:48 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -165,7 +165,7 @@
 	       (typecase (constant-value leaf)
 		 ((or number character) t)
 		 (symbol (symbol-package (constant-value leaf)))
-		 (t t)))
+		 (t nil)))
 	   (emit-move node block (constant-tn leaf) res)
 	   (let ((name-tn (emit-constant name)))
 	     (if (policy node (zerop safety))
-- 
GitLab