From c4f1e101db5f93f81575953854c355f947a4a5c4 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Sat, 14 Dec 1991 18:14:12 +0000
Subject: [PATCH] Annotate leaf's and nlx-info's as being allowed as constants
 even though they can't be dumped.

---
 compiler/node.lisp | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/compiler/node.lisp b/compiler/node.lisp
index 0ea8f02da..f9acf05f0 100644
--- a/compiler/node.lisp
+++ b/compiler/node.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/node.lisp,v 1.20 1991/12/11 17:21:14 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/node.lisp,v 1.21 1991/12/14 18:14:12 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -548,7 +548,9 @@
 ;;; non-local exits.  This is effectively an annotation on the Continuation,
 ;;; although it is accessed by searching in the Environment-Nlx-Info.
 ;;;
-(defstruct (nlx-info (:print-function %print-nlx-info))
+(defstruct (nlx-info
+	    (:print-function %print-nlx-info)
+	    (:make-load-form-fun :ignore-it))
   ;;
   ;; The cleanup associated with this exit.  In a catch or unwind-protect, this
   ;; is the :Catch or :Unwind-Protect cleanup, and not the cleanup for the
@@ -589,7 +591,8 @@
 ;;; us to easily substitute one for the other without actually hacking the flow
 ;;; graph.
 
-(defstruct leaf
+(defstruct (leaf
+	    (:make-load-form-fun :ignore-it))
   ;;
   ;; Some name for this leaf.  The exact significance of the name depends on
   ;; what kind of leaf it is.  In a Lambda-Var or Global-Var, this is the
-- 
GitLab