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