Function: comp--edge-make

comp--edge-make is a byte-compiled function defined in comp.el.gz.

Signature

(comp--edge-make &rest ARGS)

Documentation

Create a comp-edge with basic blocks SRC and DST.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp--edge-make (&rest args)
  "Create a `comp-edge' with basic blocks SRC and DST."
  (let ((n (funcall (comp-func-edge-cnt-gen comp-func))))
    (puthash
     n
     (apply #'comp--edge-make0 :number n args)
     (comp-func-edges-h comp-func))))