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