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