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