From 1c6b747372ebfc9b3a6f17aff2d9ce303ac2e6bc Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 12 Apr 1990 16:35:20 +0000 Subject: [PATCH] Moved deftypes out of vm-type-init and back to the top level, 'cause the deftypes are not needed before top level forms run. As deftypes were the only thing in vm-type-init, vm-type-init is now history. --- compiler/generic/vm-type.lisp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/compiler/generic/vm-type.lisp b/compiler/generic/vm-type.lisp index 8ef784d61..05158720a 100644 --- a/compiler/generic/vm-type.lisp +++ b/compiler/generic/vm-type.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.10 1990/04/10 14:43:18 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.11 1990/04/12 16:35:20 wlott Exp $ ;;; ;;; This file contains implementation-dependent parts of the type support ;;; code. This is stuff which deals with the mapping from types defined in @@ -20,9 +20,6 @@ ;;;; Implementation dependent deftypes: -(#-new-compiler progn - #+new-compiler defun #+new-compiler vm-type-init #+new-compiler () - ;;; Make double-float a synonym for long-float, single-float for Short-Float. ;;; This is be expanded before the translator gets a chance, so we will get ;;; precedence. @@ -91,7 +88,6 @@ ;;; Internal time format. Not a fixnum (blag...) (deftype internal-time () 'unsigned-byte) -); defun vm-type-init ;;;; Hooks into type system: -- GitLab