From 0e3885c588e63e6b42460562d5016d6e41b8743f Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Tue, 16 Nov 1993 18:28:35 +0000 Subject: [PATCH] Don't inline expand when *converting-for-interpreter*. --- compiler/locall.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/locall.lisp b/compiler/locall.lisp index fad7c8fbb..c9760edae 100644 --- a/compiler/locall.lisp +++ b/compiler/locall.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/locall.lisp,v 1.42 1993/09/10 19:09:16 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/locall.lisp,v 1.43 1993/11/16 18:28:35 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -329,6 +329,7 @@ (defun maybe-expand-local-inline (fun ref call) (if (and (policy call (>= speed space) (>= speed cspeed)) (not (eq (functional-kind (node-home-lambda call)) :external)) + (not *converting-for-interpreter*) (inline-expansion-ok call)) (with-ir1-environment call (let* ((*lexical-environment* (functional-lexenv fun)) -- GitLab