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

Fixed unsigned-byte-32-logcount to return a fixnum in it's any-reg result

instead of the raw value.
parent 977b95a1
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/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. ;;; This file contains the VM definition arithmetic VOPs for the MIPS.
;;; ;;;
...@@ -293,7 +293,7 @@ ...@@ -293,7 +293,7 @@
(inst sub temp shift 1) (inst sub temp shift 1)
(inst andcc shift temp) (inst andcc shift temp)
(inst b :ne loop) (inst b :ne loop)
(inst add res 1) (inst add res (fixnum 1))
(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