From 39ddacd85bd926307fdfc478274397f107266423 Mon Sep 17 00:00:00 2001 From: ch <ch> Date: Sun, 18 Feb 1990 05:47:26 +0000 Subject: [PATCH] Added ability to load symbols to LOAD-CONSTANT-TN. --- compiler/mips/move.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/mips/move.lisp b/compiler/mips/move.lisp index 542a1e22f..fad2c754f 100644 --- a/compiler/mips/move.lisp +++ b/compiler/mips/move.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/move.lisp,v 1.4 1990/02/09 13:22:11 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/move.lisp,v 1.5 1990/02/18 05:47:26 ch Exp $ ;;; ;;; This file contains the RT VM definition of operand loading/saving and ;;; the Move VOP. @@ -38,8 +38,8 @@ (loadi dest (fixnum val))) (null (move dest null-tn)) - ((member t) - (error "can't load T yet.")) + (symbol + (inst addi dest null-tn (initial-symbol-offset-symbol val))) (string-char (loadi dest (logior (ash (char-code val) type-bits) character-type)))) -- GitLab