From d9f01ebb98ccf6e9da0bd2579863006635720fc8 Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Tue, 30 Jul 2002 13:07:09 +0000 Subject: [PATCH] These vops probably should not take stack args because the AND instruction doesn't accept args in memory (only registers): FAST-LOGAND/SIGNED-UNSIGNED=>UNSIGNED FAST-LOGAND/UNSIGNED-SIGNED=>UNSIGNED --- 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 a660df24e..9bcba28ba 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.27 2001/11/05 21:38:15 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/arith.lisp,v 1.28 2002/07/30 13:07:09 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -173,13 +173,13 @@ (define-vop (fast-logand/signed-unsigned=>unsigned fast-logand/unsigned=>unsigned) (:args (x :target r :scs (signed-reg)) - (y :scs (unsigned-reg unsigned-stack))) + (y :scs (unsigned-reg))) (:arg-types signed-num unsigned-num)) (define-vop (fast-logand/unsigned-signed=>unsigned fast-logand/unsigned=>unsigned) (:args (x :target r :scs (unsigned-reg)) - (y :scs (signed-reg signed-stack))) + (y :scs (signed-reg))) (:arg-types unsigned-num signed-num)) ;;; Special case fixnum + and - that trap on overflow. Useful when we -- GitLab