Function: comp-emit-set-call

comp-emit-set-call is a byte-compiled function defined in comp.el.gz.

Signature

(comp-emit-set-call CALL)

Documentation

Emit CALL assigning the result to the current slot frame.

If the callee function is known to have a return type, propagate it.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp-emit-set-call (call)
  "Emit CALL assigning the result to the current slot frame.
If the callee function is known to have a return type, propagate it."
  (cl-assert call)
  (comp-emit (list 'set (comp-slot) call)))