From 0b2daa88591f9cac66b535726f277264848d16d0 Mon Sep 17 00:00:00 2001
From: toy <toy>
Date: Fri, 12 Oct 2001 15:27:21 +0000
Subject: [PATCH] Fix bugs in ash-right-signed, ash-right-unsigned.  Should
 help cross-compilation not to loop forever.

From Douglas.
---
 compiler/sparc/arith.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/compiler/sparc/arith.lisp b/compiler/sparc/arith.lisp
index 43349eb74..d28768723 100644
--- a/compiler/sparc/arith.lisp
+++ b/compiler/sparc/arith.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/arith.lisp,v 1.25 2001/05/18 16:22:53 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/arith.lisp,v 1.26 2001/10/12 15:27:21 toy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1262,12 +1262,12 @@
 (defun ash-right-signed (num shift)
   (declare (type (signed-byte #.vm:word-bits) num)
 	   (type (integer 0 #.(1- vm:word-bits)) shift))
-  (sparc::ash-right-signed num shift))
+  (ash num (- shift)))
 
 (defun ash-right-unsigned (num shift)
   (declare (type (unsigned-byte #.vm:word-bits) num)
 	   (type (integer 0 #.(1- vm:word-bits)) shift))
-  (sparc::ash-right-unsigned num shift))
+  (ash num (- shift)))
 
 ;; If we can prove that we have a right shift, just do the right shift
 ;; instead of calling the inline ASH which has to check for the
-- 
GitLab