diff --git a/compiler/globaldb.lisp b/compiler/globaldb.lisp index 6a947e2b6f62f266e0fc822e13fb1bb291b79bf7..ba4f5415291b2def757775aa7611c5b8b5e077f1 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.