Modifying constructor for vl-config structures.
(change-vl-config x [:name <name>] [:warnings <warnings>] [:minloc <minloc>] [:maxloc <maxloc>] [:atts <atts>] [:comments <comments>])
This is an often useful alternative to make-vl-config.
We construct a new vl-config structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-config (x &rest args) (std::change-aggregate 'vl-config x args '((:name . vl-config->name) (:warnings . vl-config->warnings) (:minloc . vl-config->minloc) (:maxloc . vl-config->maxloc) (:atts . vl-config->atts) (:comments . vl-config->comments)) 'change-vl-config 'remake-vl-config))