From d76a033281ef4df5cdf380e832d543649763239a Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Mon, 3 Dec 1990 19:21:09 +0000
Subject: [PATCH] Fixed unsigned-byte-32-logcount to return a fixnum in it's
 any-reg result instead of the raw value.

---
 compiler/sparc/arith.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/sparc/arith.lisp b/compiler/sparc/arith.lisp
index 0e36a3b5f..5a2a8034c 100644
--- a/compiler/sparc/arith.lisp
+++ b/compiler/sparc/arith.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/arith.lisp,v 1.1 1990/11/30 17:04:24 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/arith.lisp,v 1.2 1990/12/03 19:21:09 wlott Exp $
 ;;;
 ;;;    This file contains the VM definition arithmetic VOPs for the MIPS.
 ;;;
@@ -293,7 +293,7 @@
       (inst sub temp shift 1)
       (inst andcc shift temp)
       (inst b :ne loop)
-      (inst add res 1)
+      (inst add res (fixnum 1))
 
       (emit-label done))))
 
-- 
GitLab