From eae203ea223268282c62ae087d38d55f89ab05ab Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Wed, 2 Jan 1991 19:15:35 +0000 Subject: [PATCH] Added INFO TYPE FROZEN which enables fast structure type test compilation. --- compiler/globaldb.lisp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/compiler/globaldb.lisp b/compiler/globaldb.lisp index 6a947e2b6..ba4f54152 100644 --- a/compiler/globaldb.lisp +++ b/compiler/globaldb.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/globaldb.lisp,v 1.15 1990/11/20 18:37:13 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/globaldb.lisp,v 1.16 1991/01/02 19:15:35 ram Exp $ ;;; ;;; This file provides a functional interface to global information about ;;; named things in the system. Information is considered to be global if it @@ -1120,6 +1120,11 @@ (define-info-type type defined-structure-info (or defstruct-description null) nil) +;;; True if this type has been frozen with the FREEZE-TYPE declaration. Only +;;; interesting for structure types. +;;; +(define-info-type type frozen boolean nil) + (define-info-type type documentation (or string null)) ;;; Function that parses type specifiers into CTYPE structures. -- GitLab