1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-13 09:32:47 +00:00

* lisp/emacs-lisp/comp.el (comp-compute-dominator-tree): Fix.

This commit is contained in:
Andrea Corallo 2021-01-01 12:00:04 +01:00
parent 93ff838575
commit c29037c877

View File

@ -2650,7 +2650,7 @@ blocks."
(when-let ((blocks (comp-func-blocks comp-func))
(entry (gethash 'entry blocks))
;; No point to go on if the only bb is 'entry'.
(bb1 (gethash 'bb_1 blocks)))
(bb0 (gethash 'bb_0 blocks)))
(cl-loop with rev-bb-list = (comp-collect-rev-post-order entry)
with changed = t
while changed