diff --git a/compiler/checkgen.lisp b/compiler/checkgen.lisp index 07c525c1cda7bb11ad227f6b3fe6ba6b5e75f4f5..fe3e7f5f8907ee64906313de400bd90bb0392d41 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