From ab3ba4996ac242c72b72a41dd7a831595e629615 Mon Sep 17 00:00:00 2001
From: chiles <chiles>
Date: Mon, 15 Apr 1991 15:51:09 +0000
Subject: [PATCH] Modified BIGNUM-MULT-AND-ADD-3-ARG and
 BIGNUM-MULT-AND-ADD-4-ARG to use Rob's new stuff, so we have enough
 non-descriptor-regs.

---
 compiler/rt/arith.lisp | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/compiler/rt/arith.lisp b/compiler/rt/arith.lisp
index 77af537b6..aec2a4c64 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.4 1991/04/12 22:47:07 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/arith.lisp,v 1.5 1991/04/15 15:51:09 chiles Exp $
 ;;;
 ;;; This file contains the VM definition arithmetic VOPs for the IBM RT.
 ;;;
@@ -656,9 +656,7 @@
   (:vop-var vop)
   (:args (x :scs (unsigned-reg))
 	 (y :scs (unsigned-reg))
-	 (carry-in :scs (unsigned-reg)
-		   :load-if (not (sc-is carry-in unsigned-stack))
-		   :to :save))
+	 (carry-in :scs (unsigned-reg unsigned-stack) :to :save))
   (:arg-types unsigned-num unsigned-num unsigned-num)
   (:temporary (:scs (unsigned-reg) :from (:eval 0)) temp)
   (:results (high :scs (unsigned-reg) :from :load)
@@ -683,12 +681,8 @@
   (:policy :fast-safe)
   (:args (x :scs (unsigned-reg))
 	 (y :scs (unsigned-reg))
-	 (prev :scs (unsigned-reg)
-	       :load-if (not (sc-is prev unsigned-stack))
-	       :to :save)
-	 (carry-in :scs (unsigned-reg)
-		   :load-if (not (sc-is carry-in unsigned-stack))
-		   :to :save))
+	 (prev :scs (unsigned-reg unsigned-stack) :to :save)
+	 (carry-in :scs (unsigned-reg unsigned-stack) :to :save))
   (:arg-types unsigned-num unsigned-num unsigned-num unsigned-num)
   (:temporary (:scs (unsigned-reg) :from (:eval 0)) temp)
   (:results (high :scs (unsigned-reg) :from :load)
-- 
GitLab