mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
mv-bind-unused-p: check for present vars.
This commit is contained in:
parent
56ee531039
commit
fd5e62ca74
|
|
@ -292,7 +292,8 @@
|
|||
(let ((fun (combination-lambda dest)))
|
||||
(when (functional-kind-eq fun mv-let)
|
||||
(let ((var (nth nth-value (lambda-vars fun))))
|
||||
(notany #'node-lvar (leaf-refs var)))))))))
|
||||
(and var
|
||||
(notany #'node-lvar (leaf-refs var))))))))))
|
||||
|
||||
(defun combination-matches (name args combination)
|
||||
(and (combination-p combination)
|
||||
|
|
|
|||
Loading…
Reference in a new issue