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