]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/comp.el (comp-compute-dominator-tree): Fix.
authorAndrea Corallo <akrl@sdf.org>
Fri, 1 Jan 2021 11:00:04 +0000 (12:00 +0100)
committerAndrea Corallo <akrl@sdf.org>
Fri, 1 Jan 2021 13:07:27 +0000 (14:07 +0100)
lisp/emacs-lisp/comp.el

index 227333f72c86f5b8ac784048170a975aeedcf2a7..848bcf70cdbeba5c9305ed275facd9135a84bc15 100644 (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