Function: comp-edge-src
comp-edge-src is a byte-compiled function defined in comp.el.gz.
Signature
(comp-edge-src comp-edge-src X)
Documentation
Access slot "src" of comp-edge struct X.
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."))