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