1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 18:40:39 -08:00

remove unnecessary return when printing blocks

This commit is contained in:
Andrea Corallo 2019-11-25 20:33:47 +01:00
parent ba51c31b47
commit 5411beae02

View file

@ -352,7 +352,7 @@ VERBOSITY is a number between 0 and 3."
(comp-log (format "\nFunction: %s\n" (comp-func-name func)) verbosity)
(cl-loop for block-name being each hash-keys of (comp-func-blocks func)
using (hash-value bb)
do (comp-log (concat "<" (symbol-name block-name) ">\n") verbosity)
do (comp-log (concat "<" (symbol-name block-name) ">") verbosity)
(comp-log (comp-block-insns bb) verbosity))))
(defun comp-log-edges (func)