Function: comp--remove-type-hints
comp--remove-type-hints is a byte-compiled function defined in
comp.el.gz.
Signature
(comp--remove-type-hints _)
Documentation
Dead code elimination.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp--remove-type-hints (_)
"Dead code elimination."
(maphash (lambda (_ f)
(when (>= (comp-func-speed f) 2)
(let ((comp-func f))
(comp--remove-type-hints-func)
(comp--log-func comp-func 3))))
(comp-ctxt-funcs-h comp-ctxt)))