Basic constructor macro for branch-funct-bne structures.
(make-branch-funct-bne )
This is the usual way to construct branch-funct-bne structures. It simply conses together a structure with the specified fields.
This macro generates a new branch-funct-bne structure from scratch. See also change-branch-funct-bne, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-branch-funct-bne (&rest args) (std::make-aggregate 'branch-funct-bne args 'nil 'make-branch-funct-bne nil))
Function:
(defun branch-funct-bne nil (declare (xargs :guard t)) (cons :bne (list)))