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