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

Oops, I seem to have broken the single return value case for call out.

Fixed now.
parent b10c6178
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/aliencomp.lisp,v 1.13 1991/04/22 18:24:30 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/aliencomp.lisp,v 1.14 1991/04/22 19:30:43 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -540,10 +540,11 @@ ...@@ -540,10 +540,11 @@
(assert (null args))) (assert (null args)))
(let ((results (and return-type (make-call-out-result-tn return-type)))) (let ((results (and return-type (make-call-out-result-tn return-type))))
(unless (listp results)
(setf results (list results)))
(vop* call-out call block (vop* call-out call block
((reference-tn-list arg-tns nil)) ((reference-tn-list arg-tns nil))
((reference-tn-list (if (listp results) results (list results)) ((reference-tn-list results t))
t))
name) name)
(vop dealloc-number-stack-space call block stack-frame-size) (vop dealloc-number-stack-space call block stack-frame-size)
(move-continuation-result call block results cont))))) (move-continuation-result call block results cont)))))
......
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