From fcf4bb00ebfb0d075683b2538bbb95280ac89947 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Mon, 23 Apr 1990 21:33:36 +0000
Subject: [PATCH] But don't call CONVERT-TO-ENVIRONMENT-TN on TNs that are
 already :ENVIRONMENT.

---
 compiler/life.lisp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/compiler/life.lisp b/compiler/life.lisp
index 78637dc85..ea8c134dd 100644
--- a/compiler/life.lisp
+++ b/compiler/life.lisp
@@ -644,7 +644,8 @@
 		(do-live-tns (tn ss block)
 		  (unless (eq (tn-kind tn) :component)
 		    (force-tn-to-stack tn)
-		    (convert-to-environment-tn tn)))))))
+		    (unless (eq (tn-kind tn) :environment)
+		      (convert-to-environment-tn tn))))))))
 	
 	(do ((ref (vop-refs vop) (tn-ref-next-ref ref)))
 	    ((null ref))
-- 
GitLab