Function: comp-block-preds

comp-block-preds is a byte-compiled function defined in comp.el.gz.

Signature

(comp-block-preds BASIC-BLOCK)

Documentation

Return the list of predecessors of BASIC-BLOCK.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp-block-preds (basic-block)
  "Return the list of predecessors of BASIC-BLOCK."
  (mapcar #'comp-edge-src (comp-block-in-edges basic-block)))