Skip to content
Snippets Groups Projects
Commit e26eded2 authored by ram's avatar ram
Browse files

Added a call to eval:flush-interpreted-function-cache before the call to purify

in save-lisp.  This prevents us from unnecessarily holding on to interpreted
drek created at load time.
parent ef693b1b
No related branches found
No related tags found
No related merge requests found
...@@ -7,11 +7,11 @@ ...@@ -7,11 +7,11 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.5 1991/02/08 13:35:22 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.6 1991/04/09 14:39:43 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.5 1991/02/08 13:35:22 ram Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/save.lisp,v 1.6 1991/04/09 14:39:43 ram Exp $
;;; ;;;
;;; Dump the current lisp image into a core file. All the real work is done ;;; Dump the current lisp image into a core file. All the real work is done
;;; be C. ;;; be C.
...@@ -94,7 +94,8 @@ ...@@ -94,7 +94,8 @@
:enable-gc :enable-gc
If true, turn GC on if it was off." If true, turn GC on if it was off."
(eval:flush-interpreted-function-cache)
(if purify (if purify
(purify :root-structures root-structures :constants constants) (purify :root-structures root-structures :constants constants)
(gc)) (gc))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment