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