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