From d7e77c020fb6eca61a9017708ced96c0ca977f35 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Mon, 23 Apr 1990 12:21:19 +0000 Subject: [PATCH] In CONFLICT-ANALYZE-1-BLOCK, when processing :FORCE-TO-STACK SAVE-P values, always do the FORCE-TN-TO-STACK unless it is :COMPONENT. Formerly, any TNs that weren't :NORMAL weren't forced, including :ENVIRONMENT arguments. --- compiler/life.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/life.lisp b/compiler/life.lisp index ae11b19de..78637dc85 100644 --- a/compiler/life.lisp +++ b/compiler/life.lisp @@ -642,7 +642,7 @@ (setf (vop-save-set vop) ss) (when (eq save-p :force-to-stack) (do-live-tns (tn ss block) - (when (eq (tn-kind tn) :normal) + (unless (eq (tn-kind tn) :component) (force-tn-to-stack tn) (convert-to-environment-tn tn))))))) -- GitLab