From b81e7721f3e08ab531faf1ecfbb3dcb5169e1cab Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Tue, 20 Jul 1993 11:34:51 +0000 Subject: [PATCH] Fixed a bug in default-unknown-values where it wouldn't default the first unsupplied value to nil if more then 6 values where supplied. --- compiler/sparc/call.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/sparc/call.lisp b/compiler/sparc/call.lisp index b92baf71d..05c0dddb0 100644 --- a/compiler/sparc/call.lisp +++ b/compiler/sparc/call.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.24 1993/03/01 14:50:49 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.25 1993/07/20 11:34:51 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -329,7 +329,7 @@ default-value-8 (tn (tn-ref-tn val))) (defaults (cons default-lab tn)) - (inst b :lt default-lab) + (inst b :le default-lab) (inst ld move-temp ocfp-tn (* i vm:word-bytes)) (inst subcc temp (fixnum 1)) (store-stack-tn tn move-temp))) -- GitLab