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

Added a VALUES :result-tn method.

parent 4959f4c1
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/c-call.lisp,v 1.3 1992/02/25 07:02:54 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/c-call.lisp,v 1.4 1992/03/02 01:59:28 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -61,6 +61,12 @@ ...@@ -61,6 +61,12 @@
(declare (ignore type)) (declare (ignore type))
(my-make-wired-tn 'double-float 'double-reg 0)) (my-make-wired-tn 'double-float 'double-reg 0))
(def-alien-type-method (values :result-tn) (type)
(mapcar #'(lambda (type)
(invoke-alien-type-method :result-tn type))
(alien-values-type-values type)))
(def-vm-support-routine make-call-out-argument-tns (type) (def-vm-support-routine make-call-out-argument-tns (type)
(declare (type alien-function-type type)) (declare (type alien-function-type type))
(let ((arg-state (make-arg-state))) (let ((arg-state (make-arg-state)))
......
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