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