From 51cf9a4d85eafd3f18887dcc30ab111da008a45b Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Fri, 25 May 1990 12:25:27 +0000
Subject: [PATCH] Fixed the argument order to tail-call-variable.

---
 compiler/mips/call.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/compiler/mips/call.lisp b/compiler/mips/call.lisp
index 9ee524057..72fc77be5 100644
--- a/compiler/mips/call.lisp
+++ b/compiler/mips/call.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.11 1990/05/19 09:42:50 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.12 1990/05/25 12:25:27 wlott Exp $
 ;;;
 ;;;    This file contains the VM definition of function call for the MIPS.
 ;;;
@@ -710,10 +710,10 @@ default-value-5
 (expand
  `(define-vop (tail-call-variable)
     (:args
+     (args :scs (descriptor-reg) :to (:result 0))
      (function-arg :scs (descriptor-reg) :target lexenv)
      (old-fp-arg :scs (descriptor-reg) :target old-fp)
-     (return-pc-arg :scs (descriptor-reg) :target return-pc)
-     (args :scs (descriptor-reg)))
+     (return-pc-arg :scs (descriptor-reg) :target return-pc))
     (:temporary (:sc any-reg :offset lexenv-offset :from (:argument 0))
 		lexenv)
     (:temporary (:sc any-reg :offset old-fp-offset :from (:argument 1))
-- 
GitLab