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