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