Skip to content
Snippets Groups Projects
Commit b81e7721 authored by wlott's avatar wlott
Browse files

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.
parent 0da3ae50
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (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 ...@@ -329,7 +329,7 @@ default-value-8
(tn (tn-ref-tn val))) (tn (tn-ref-tn val)))
(defaults (cons default-lab tn)) (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 ld move-temp ocfp-tn (* i vm:word-bytes))
(inst subcc temp (fixnum 1)) (inst subcc temp (fixnum 1))
(store-stack-tn tn move-temp))) (store-stack-tn tn move-temp)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment