From addd3ff3c8fa2bb0dc5968d870021d42c8f362e4 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Sun, 30 Apr 2000 03:48:18 +0000 Subject: [PATCH] Fix the hairy-type-check-template handling of the symbol and cons types; these are built-in-classes rather than named-types. The check-symbol and check-cons VOPs are now usable. --- compiler/generic/vm-type.lisp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/compiler/generic/vm-type.lisp b/compiler/generic/vm-type.lisp index a50547c96..bfbfa1697 100644 --- a/compiler/generic/vm-type.lisp +++ b/compiler/generic/vm-type.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.38 2000/01/10 14:47:45 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.39 2000/04/30 03:48:18 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -172,11 +172,6 @@ (defun hairy-type-check-template (type) (declare (type ctype type)) (typecase type - (named-type - (case (named-type-name type) - (cons 'c:check-cons) - (symbol 'c:check-symbol) - (t nil))) (numeric-type (cond ((type= type (specifier-type 'fixnum)) 'c:check-fixnum) @@ -189,6 +184,10 @@ (if (type= type (specifier-type 'bignum)) 'c:check-bignum nil)) + (built-in-class + (case (class-name type) + (symbol 'c:check-symbol) + (cons 'c:check-cons))) (function-type 'c:check-function) (t -- GitLab