Skip to content
Snippets Groups Projects
Commit 586476cd authored by ram's avatar ram
Browse files

Ripped out support for CHECK-FUNCTION-OR-SYMBOL, since the definition was wrong

(didn't include NIL), and this isn't very important now that there is
FAST-SAFE-COERCE-TO-FUNCTION.
 
parent 72d7f5a3
No related branches found
No related tags found
No related merge requests found
...@@ -7,11 +7,11 @@ ...@@ -7,11 +7,11 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.25 1991/02/20 15:17:35 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.26 1991/04/24 12:24:57 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.25 1991/02/20 15:17:35 ram Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.26 1991/04/24 12:24:57 ram Exp $
;;; ;;;
;;; This file contains implementation-dependent parts of the type support ;;; This file contains implementation-dependent parts of the type support
;;; code. This is stuff which deals with the mapping from types defined in ;;; code. This is stuff which deals with the mapping from types defined in
...@@ -190,10 +190,6 @@ ...@@ -190,10 +190,6 @@
((type= type (specifier-type '(unsigned-byte 32))) ((type= type (specifier-type '(unsigned-byte 32)))
'c:check-unsigned-byte-32) 'c:check-unsigned-byte-32)
(t nil))) (t nil)))
(union-type
(if (type= type (specifier-type '(or function symbol)))
'c:check-function-or-symbol
nil))
(function-type (function-type
'c:check-function) 'c:check-function)
(t (t
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment