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

Added code to delete the lambda when we delete the combination for a let.

parent 8246396b
No related branches found
No related tags found
No related merge requests found
......@@ -771,6 +771,12 @@
(typecase node
(ref (delete-ref node))
(basic-combination
(when (and (eq (basic-combination-kind node) :local)
;; Not already deleted...
(continuation-use (basic-combination-fun node)))
(let ((fun (combination-lambda node)))
(when (member (functional-kind fun) '(:let :mv-let))
(delete-lambda fun))))
(flush-dest (basic-combination-fun node))
(dolist (arg (basic-combination-args node))
(when arg (flush-dest arg))))
......
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