Skip to content
Snippets Groups Projects
Commit 3225cb66 authored by wlott's avatar wlott
Browse files

Changed LOAD-CONSTANT-TN to use the new load-symbol macro.

parent e18d379f
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/move.lisp,v 1.6 1990/02/18 05:59:35 ch Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/move.lisp,v 1.7 1990/02/23 20:22:52 wlott Exp $
;;; ;;;
;;; This file contains the RT VM definition of operand loading/saving and ;;; This file contains the RT VM definition of operand loading/saving and
;;; the Move VOP. ;;; the Move VOP.
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
(null (null
(move dest null-tn)) (move dest null-tn))
(symbol (symbol
(inst addi dest null-tn (initial-symbol-offset val))) (load-symbol dest val))
(string-char (string-char
(loadi dest (logior (ash (char-code val) type-bits) (loadi dest (logior (ash (char-code val) type-bits)
character-type)))) character-type))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment