From 1186db25ff77e45519171d83ffd599ddc5d90808 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 13 Jun 1991 16:37:48 +0000 Subject: [PATCH] Fixed the UNSIGNED-BYTE-32-COUNT VOP to put a fixnum in the any-reg result instead of the raw (untyped) value. --- compiler/rt/arith.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/rt/arith.lisp b/compiler/rt/arith.lisp index 4e950c460..66e7eda64 100644 --- a/compiler/rt/arith.lisp +++ b/compiler/rt/arith.lisp @@ -7,7 +7,7 @@ ;;; 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. ;;; @@ -349,7 +349,7 @@ (inst s temp 1) (inst n number temp) (inst bncx :eq loop) - (inst a res 1) + (inst a res (fixnum 1)) ;; We're done and res already has result. (emit-label done)))) -- GitLab