(vl-finallist-lvaluecheck x warnings) → warnings
Function:
(defun vl-finallist-lvaluecheck (x warnings) (declare (xargs :guard (and (vl-finallist-p x) (vl-warninglist-p warnings)))) (let ((__function__ 'vl-finallist-lvaluecheck)) (declare (ignorable __function__)) (b* (((when (atom x)) (b* ((warnings (vl-warninglist-fix warnings))) warnings)) (warnings (vl-final-lvaluecheck (car x) warnings)) (warnings (vl-finallist-lvaluecheck (cdr x) warnings))) warnings)))
Theorem:
(defthm vl-warninglist-p-of-vl-finallist-lvaluecheck (b* ((warnings (vl-finallist-lvaluecheck x warnings))) (vl-warninglist-p warnings)) :rule-classes :rewrite)
Theorem:
(defthm vl-finallist-lvaluecheck-of-vl-finallist-fix-x (equal (vl-finallist-lvaluecheck (vl-finallist-fix x) warnings) (vl-finallist-lvaluecheck x warnings)))
Theorem:
(defthm vl-finallist-lvaluecheck-vl-finallist-equiv-congruence-on-x (implies (vl-finallist-equiv x x-equiv) (equal (vl-finallist-lvaluecheck x warnings) (vl-finallist-lvaluecheck x-equiv warnings))) :rule-classes :congruence)
Theorem:
(defthm vl-finallist-lvaluecheck-of-vl-warninglist-fix-warnings (equal (vl-finallist-lvaluecheck x (vl-warninglist-fix warnings)) (vl-finallist-lvaluecheck x warnings)))
Theorem:
(defthm vl-finallist-lvaluecheck-vl-warninglist-equiv-congruence-on-warnings (implies (vl-warninglist-equiv warnings warnings-equiv) (equal (vl-finallist-lvaluecheck x warnings) (vl-finallist-lvaluecheck x warnings-equiv))) :rule-classes :congruence)