From 6a14610aa53a1cf2967064652e3e8f10085fc896 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Fri, 11 Feb 1994 15:08:51 +0000
Subject: [PATCH] Change PROGV IR1 convert method to pass :CONSERVATIVE T to
 BYTE-COMPILING to ensure that we never try to byte-compile the %primitive
 stuff.

---
 compiler/ir2tran.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/ir2tran.lisp b/compiler/ir2tran.lisp
index 244ee0eff..845593fd3 100644
--- a/compiler/ir2tran.lisp
+++ b/compiler/ir2tran.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/ir2tran.lisp,v 1.56 1993/09/14 22:14:42 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir2tran.lisp,v 1.57 1994/02/11 15:08:51 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1429,7 +1429,7 @@
 (def-ir1-translator progv ((vars vals &body body) start cont)
   (ir1-convert
    start cont
-   (if (or *converting-for-interpreter* (byte-compiling))
+   (if (or *converting-for-interpreter* (byte-compiling :conservative t))
        `(%progv ,vars ,vals #'(lambda () ,@body))
        (once-only ((n-save-bs '(%primitive current-binding-pointer)))
 	 `(unwind-protect
-- 
GitLab