From edfafbbbc559ac9b29c1f4fff04c99ea374ab7cd Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Sun, 29 Apr 1990 02:47:11 +0000
Subject: [PATCH] Removed unused temporaries from rem.

---
 compiler/mips/arith.lisp | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/compiler/mips/arith.lisp b/compiler/mips/arith.lisp
index 67e961b7c..166cd1d41 100644
--- a/compiler/mips/arith.lisp
+++ b/compiler/mips/arith.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/arith.lisp,v 1.13 1990/04/27 19:16:42 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/arith.lisp,v 1.14 1990/04/29 02:47:11 wlott Exp $
 ;;;
 ;;;    This file contains the VM definition arithmetic VOPs for the MIPS.
 ;;;
@@ -279,11 +279,10 @@
     (inst mfhi r)))
 
 (define-vop (fast-rem/fixnum fast-binop)
-  (:temporary (:scs (non-descriptor-reg) :type random) t1 t2)
+  (:translate rem)
   (:args (x :target r :scs (signed-reg))
 	 (y :target r :scs (signed-reg)))
   (:results (r :scs (signed-reg)))
-  (:translate rem)
   (:generator 10
     (let ((zero (generate-error-code di:division-by-zero-error x y)))
       (inst beq y zero-tn zero))
-- 
GitLab