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