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