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