[cmucl-cvs] CMUCL commit: src/compiler (dump.lisp)

Raymond Toy rtoy at common-lisp.net
Wed Feb 2 13:07:59 UTC 2011


    Date: Wednesday, February 2, 2011 @ 08:07:58
  Author: rtoy
    Path: /project/cmucl/cvsroot/src/compiler

Modified: dump.lisp

Don't dump fdefinitions for local flet/labels functions.  Suggested by
Helmut Eller, cmucl-imp 2011-01-19.


-----------+
 dump.lisp |   10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)


Index: src/compiler/dump.lisp
diff -u src/compiler/dump.lisp:1.91 src/compiler/dump.lisp:1.92
--- src/compiler/dump.lisp:1.91	Sat Dec  4 18:21:13 2010
+++ src/compiler/dump.lisp	Wed Feb  2 08:07:57 2011
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /project/cmucl/cvsroot/src/compiler/dump.lisp,v 1.91 2010-12-04 23:21:13 rtoy Exp $")
+  "$Header: /project/cmucl/cvsroot/src/compiler/dump.lisp,v 1.92 2011-02-02 13:07:57 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -649,7 +649,13 @@
     (dump-fop 'lisp::fop-function-entry file)
     (dump-unsigned-32 (label-position (entry-info-offset entry)) file)
     (let ((handle (dump-pop file)))
-      (when (and name (or (symbolp name) (listp name)))
+      (when (and name (or (symbolp name)
+			  (and (listp name)
+			       ;; Skip over any entries for
+			       ;; flet/labels functions.  We don't
+			       ;; need them stored because we can't
+			       ;; really do anything with them.
+			       (not (member (car name) '(flet labels) :test 'eq) ))))
 	(dump-object name file)
 	(dump-push handle file)
 	(dump-fop 'lisp::fop-fset file))




More information about the cmucl-cvs mailing list