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