Skip to content
Snippets Groups Projects
Commit fdd1150a authored by ram's avatar ram
Browse files

Fixed function dumping to understand that it is now the TAIL-SET-INFO

that is conditionally present, and not the LAMBDA-TAIL-SET.
parent 20fe5f1a
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/debug-dump.lisp,v 1.25 1991/07/08 16:36:12 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/debug-dump.lisp,v 1.26 1991/12/11 16:47:12 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -594,15 +594,14 @@
(if (external-entry-point-p fun)
(setf (compiled-debug-function-returns dfun) :standard)
(let ((tails (lambda-tail-set fun)))
(when tails
(let ((info (tail-set-info tails)))
(cond ((eq (return-info-kind info) :unknown)
(setf (compiled-debug-function-returns dfun)
:standard))
((/= level 0)
(setf (compiled-debug-function-returns dfun)
(compute-debug-returns fun))))))))
(let ((info (tail-set-info (lambda-tail-set fun))))
(when info
(cond ((eq (return-info-kind info) :unknown)
(setf (compiled-debug-function-returns dfun)
:standard))
((/= level 0)
(setf (compiled-debug-function-returns dfun)
(compute-debug-returns fun)))))))
dfun))
......
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