Modifying constructor for closure-input structures.
(change-closure-input x
[:reg <reg>]
[:type <type>])
This is an often useful alternative to make-closure-input.
We construct a new closure-input structure that is a copy of
This is an ordinary
Macro:
(defmacro change-closure-input (x &rest args) (std::change-aggregate 'closure-input x args '((:reg . closure-input->reg) (:type . closure-input->type)) 'change-closure-input 'nil))