emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/native-comp c29037c 7/8: * lisp/emacs-lisp/comp.el (comp-compute


From: Andrea Corallo
Subject: feature/native-comp c29037c 7/8: * lisp/emacs-lisp/comp.el (comp-compute-dominator-tree): Fix.
Date: Fri, 1 Jan 2021 08:08:14 -0500 (EST)

branch: feature/native-comp
commit c29037c877ae0d606daf3949dfc3e4e43883d74f
Author: Andrea Corallo <akrl@sdf.org>
Commit: Andrea Corallo <akrl@sdf.org>

    * lisp/emacs-lisp/comp.el (comp-compute-dominator-tree): Fix.
---
 lisp/emacs-lisp/comp.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 227333f..848bcf7 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]