From 2a2c11b2b02160675560b5deee8d81e1a04ebf9f Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Fri, 8 Nov 1991 15:23:00 +0000
Subject: [PATCH] Added :SCS (DESCRIPTOR-REG) to the more operand of full-call
 VOPs for representation selection's benefit.

---
 compiler/rt/call.lisp    | 2 +-
 compiler/sparc/call.lisp | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/compiler/rt/call.lisp b/compiler/rt/call.lisp
index 3d46bef77..17634fb45 100644
--- a/compiler/rt/call.lisp
+++ b/compiler/rt/call.lisp
@@ -662,7 +662,7 @@ default-value-5
 	    (return-pc :scs (descriptor-reg control-stack)
 		       :target return-pc-pass)))
       
-      ,@(unless variable '((args :more t))))
+      ,@(unless variable '((args :more t :scs (descriptor-reg)))))
 
      ,@(when (eq return :fixed)
 	 '((:results (values :more t))))
diff --git a/compiler/sparc/call.lisp b/compiler/sparc/call.lisp
index fde26f56c..57f0d0647 100644
--- a/compiler/sparc/call.lisp
+++ b/compiler/sparc/call.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.5 1991/05/16 16:07:40 ram Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.6 1991/11/08 15:22:10 ram Exp $
 ;;;
 ;;; This file contains the VM definition of function call for the SPARC.
 ;;;
@@ -654,7 +654,7 @@ default-value-8
 	  '((old-fp :target old-fp-pass)
 	    (return-pc :target return-pc-pass)))
       
-      ,@(unless variable '((args :more t))))
+      ,@(unless variable '((args :more t :scs (descriptor-reg)))))
 
      ,@(when (eq return :fixed)
 	 '((:results (values :more t))))
-- 
GitLab