Function: make--comp-edge

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

Signature

(make--comp-edge &key SRC DST NUMBER)

Documentation

Constructor for objects of type comp-edge.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(cl-defstruct (comp-edge (:copier nil) (:constructor make--comp-edge))
  "An edge connecting two basic blocks."
  (src nil :type (or null comp-block))
  (dst nil :type (or null comp-block))
  (number nil :type number
          :documentation "The index number corresponding to this edge in the
 edge hash."))