Skip to content
Snippets Groups Projects
Commit 537edb52 authored by wlott's avatar wlott
Browse files

Fixed LOAD-CONSTANT-TN to load fixnums correctly.

parent ed2e69e4
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.2 1990/02/03 17:09:09 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/move.lisp,v 1.3 1990/02/05 13:06:27 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.
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
temp)))) temp))))
(etypecase val (etypecase val
(integer (integer
(loadi dest val)) (loadi dest (fixnum val)))
(null (null
(move dest null-tn)) (move dest null-tn))
((member t) ((member t)
......
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