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