From 50fd8d12884d23029569757c524eb6ecaa666a6e Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Sun, 2 Aug 1992 19:40:14 +0000
Subject: [PATCH] Byte compile if :MAYBE and SPACE or CSPEED is 3.

---
 compiler/main.lisp | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/compiler/main.lisp b/compiler/main.lisp
index 9e2a29753..64bcbd1f8 100644
--- a/compiler/main.lisp
+++ b/compiler/main.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/main.lisp,v 1.68 1992/07/30 13:24:54 hallgren Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.69 1992/08/02 19:40:14 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -343,8 +343,11 @@
 	    ((t) t)
 	    ((nil) nil)
 	    (:maybe
-	     ;; ### Need some heuristic
-	     nil))))
+	     (dolist (fun (component-lambdas component) t)
+	       (unless (policy (lambda-bind fun)
+			       (eql (max space cspeed) 3))
+		 (return nil)))))))
+
     (when *compile-print*
       (compiler-mumble "~&~:[~;Byte ~]Compiling ~A: "
 		       *byte-compiling*
-- 
GitLab