Function: comp--lap-eob-p
comp--lap-eob-p is a byte-compiled function defined in comp.el.gz.
Signature
(comp--lap-eob-p INST)
Documentation
Return t if INST closes the current basic blocks, nil otherwise.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp--lap-eob-p (inst)
"Return t if INST closes the current basic blocks, nil otherwise."
(when (memq (car inst) comp-lap-eob-ops)
t))