Function: comp--label-to-addr

comp--label-to-addr is a byte-compiled function defined in comp.el.gz.

Signature

(comp--label-to-addr LABEL)

Documentation

Find the address of LABEL.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defsubst comp--label-to-addr (label)
  "Find the address of LABEL."
  (or (gethash label (comp-limplify-label-to-addr comp-pass))
      (signal 'native-ice (list "label not found" label))))