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