Function: make-comp-edge

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

Signature

(make-comp-edge &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 make-comp-edge (&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 #'make--comp-edge :number n args)
     (comp-func-edges-h comp-func))))