Skip to content
Snippets Groups Projects
Commit 0da3ae50 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 were supplied.
parent 1cce877b
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.60 1993/05/27 01:48:05 wlott Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.61 1993/07/20 11:31:43 wlott Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -355,7 +355,7 @@ default-value-8
(tn (tn-ref-tn val)))
(defaults (cons default-lab tn))
(inst bltz temp default-lab)
(inst blez temp default-lab)
(inst lw move-temp ocfp-tn (* i word-bytes))
(inst addu temp temp (fixnum -1))
(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