Basic constructor macro for vl-continuestmt structures.
(make-vl-continuestmt [:atts <atts>])
This is the usual way to construct vl-continuestmt structures. It simply conses together a structure with the specified fields.
This macro generates a new vl-continuestmt structure from scratch. See also change-vl-continuestmt, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-vl-continuestmt (&rest args) (std::make-aggregate 'vl-continuestmt args '((:atts)) 'make-vl-continuestmt nil))
Function:
(defun vl-continuestmt (atts) (declare (xargs :guard (vl-atts-p atts))) (declare (xargs :guard t)) (let ((__function__ 'vl-continuestmt)) (declare (ignorable __function__)) (b* ((atts (mbe :logic (vl-atts-fix atts) :exec atts))) (cons :vl-continuestmt atts))))