diff --git a/compiler/rt/call.lisp b/compiler/rt/call.lisp
index 3d46bef770c57034849d02337761701ce88725c8..17634fb45be48738733d23cd7369c0aca30b775f 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 fde26f56cbb99a0342c925440c82961a53683de7..57f0d064745d34cd4e3b7e50cf003316e35903a1 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))))