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:
parent
ba51c31b47
commit
5411beae02
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue