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