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