Function: comp--new-block-sym
comp--new-block-sym is a byte-compiled function defined in comp.el.gz.
Signature
(comp--new-block-sym &optional POSTFIX)
Documentation
Return a unique symbol postfixing POSTFIX naming the next new basic block.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp--new-block-sym (&optional postfix)
"Return a unique symbol postfixing POSTFIX naming the next new basic block."
(intern (format (if postfix "bb_%s_%s" "bb_%s")
(funcall (comp-func-block-cnt-gen comp-func))
postfix)))