Function: comp-edge-number

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

Signature

(comp-edge-number CL-X)

Documentation

Access slot "number" of comp-edge struct CL-X.

The index number corresponding to this edge in the
 edge hash.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(cl-defstruct (comp-edge (:copier nil) (:constructor comp--edge-make0))
  "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."))