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