From 19ce4787245c6d7041efbc12e6477973b3b8d949 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Fri, 31 May 1991 14:21:26 +0000 Subject: [PATCH] Changed function continuation annotation to allow NOTINLINE references to be delayed. This is somewhat questionable, but is probably OK. The real problem is that (funcall #'foo ...something that fsets foo..) doesn't do the right thing. The reason for this change is that it produces much better code for notinline references (in particular, those resulting from calls the DEFSTRUCT predicate functions inside of the structure-typep transform.) --- compiler/ltn.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/ltn.lisp b/compiler/ltn.lisp index 39d1a9e12..8902020bd 100644 --- a/compiler/ltn.lisp +++ b/compiler/ltn.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ltn.lisp,v 1.24 1991/04/23 16:24:21 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ltn.lisp,v 1.25 1991/05/31 14:21:26 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -154,7 +154,7 @@ (single-value-type (continuation-proven-type cont))))) (info (make-ir2-continuation ptype))) (setf (continuation-info cont) info) - (let ((name (continuation-function-name cont))) + (let ((name (continuation-function-name cont t))) (if (and delay name (symbolp name)) (setf (ir2-continuation-kind info) :delayed) (setf (ir2-continuation-locs info) (list (make-normal-tn ptype)))))) -- GitLab