Function: comp-edge-src

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

Signature

(comp-edge-src CL-X)

Documentation

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

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."))