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