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

Clobber functional-entry-function too in delete-component.

parent e8616faa
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; 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/compiler/ir1util.lisp,v 1.75 1994/02/08 14:29:50 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.76 1994/02/10 23:16:32 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1257,6 +1257,7 @@ ...@@ -1257,6 +1257,7 @@
(setf (block-delete-p block) t)) (setf (block-delete-p block) t))
(dolist (fun (component-lambdas component)) (dolist (fun (component-lambdas component))
(setf (functional-kind fun) nil) (setf (functional-kind fun) nil)
(setf (functional-entry-function fun) nil)
(setf (leaf-refs fun) nil) (setf (leaf-refs fun) nil)
(delete-functional fun)) (delete-functional fun))
(do-blocks (block component) (do-blocks (block component)
......
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