(make-stat1 xregs pc memory error) → stat1
Function:
(defun make-stat1 (xregs pc memory error) (declare (xargs :guard (and (stat1-xregs-p xregs) (stat1-pc-p pc) (stat1-memory-p memory) (stat1-error-p error)))) (list xregs pc memory error))
Theorem:
(defthm stat1p-of-make-stat1 (implies (and (stat1-xregs-p xregs) (stat1-pc-p pc) (stat1-memory-p memory) (stat1-error-p error)) (b* ((stat1 (make-stat1 xregs pc memory error))) (stat1p stat1))) :rule-classes :rewrite)