From 441cee2ff11557b7b7b21ff8be1044897202f1a1 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Thu, 6 Sep 1990 13:44:00 +0000
Subject: [PATCH] Added *FAILED-OPTIMIZATIONS* to the hashtables we create in
 WITH-IR1-NAMESPACE so that the compiler will be re-entrant.

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

diff --git a/compiler/macros.lisp b/compiler/macros.lisp
index 2e3c23c8b..d9637fc25 100644
--- a/compiler/macros.lisp
+++ b/compiler/macros.lisp
@@ -697,7 +697,8 @@
   `(let ((*free-variables* (make-hash-table :test #'eq))
 	 (*free-functions* (make-hash-table :test #'equal))
 	 (*constants* (make-hash-table :test #'equal))
-	 (*source-paths* (make-hash-table :test #'eq)))
+	 (*source-paths* (make-hash-table :test #'eq))
+	 (*failed-optimizations* (make-hash-table :test #'eq)))
      ,@forms))
 
 
-- 
GitLab