From 2ee8c9768baee6640806b576186fb7f030086ae3 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Tue, 22 May 1990 13:14:58 +0000
Subject: [PATCH] Changed MAYBE-WEAKEN-CHECK to accept a type if there is a
 predicate for that exact type, rather than possibly blowing off the check
 entirely.

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

diff --git a/compiler/checkgen.lisp b/compiler/checkgen.lisp
index 07c525c1c..fe3e7f5f8 100644
--- a/compiler/checkgen.lisp
+++ b/compiler/checkgen.lisp
@@ -109,7 +109,8 @@
 	       (when (and (csubtypep type stype)
 			  (not (union-type-p stype))) ;Not #!% COMMON type.
 		 (let ((stype-cost (type-test-cost stype)))
-		   (when (< stype-cost min-cost)
+		   (when (or (< stype-cost min-cost)
+			     (type= stype type))
 		     (setq found-super t)
 		     (setq min-type stype  min-cost stype-cost))))))
 	   (if found-super
-- 
GitLab