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