Skip to content
Snippets Groups Projects
Commit 1186db25 authored by wlott's avatar wlott
Browse files

Fixed the UNSIGNED-BYTE-32-COUNT VOP to put a fixnum in the any-reg result

instead of the raw (untyped) value.
parent eb2260df
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/rt/arith.lisp,v 1.9 1991/05/06 15:01:22 chiles Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/arith.lisp,v 1.10 1991/06/13 16:37:48 wlott Exp $
;;; ;;;
;;; This file contains the VM definition arithmetic VOPs for the IBM RT. ;;; This file contains the VM definition arithmetic VOPs for the IBM RT.
;;; ;;;
...@@ -349,7 +349,7 @@ ...@@ -349,7 +349,7 @@
(inst s temp 1) (inst s temp 1)
(inst n number temp) (inst n number temp)
(inst bncx :eq loop) (inst bncx :eq loop)
(inst a res 1) (inst a res (fixnum 1))
;; We're done and res already has result. ;; We're done and res already has result.
(emit-label done)))) (emit-label done))))
......
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