(vl-distlist-condcheck x tests-above) → warnings
Function:
(defun vl-distlist-condcheck (x tests-above) (declare (xargs :guard (and (vl-distlist-p x) (vl-exprlist-p tests-above)))) (let ((__function__ 'vl-distlist-condcheck)) (declare (ignorable __function__)) (b* (((when (atom x)) (b* ((warnings nil)) warnings)) (warnings (vl-distitem-condcheck (car x) tests-above)) (warnings1 (vl-distlist-condcheck (cdr x) tests-above)) (warnings (vl-warningtree-cons warnings1 warnings))) warnings)))
Theorem:
(defthm vl-warningtree-p-of-vl-distlist-condcheck (b* ((warnings (vl-distlist-condcheck x tests-above))) (vl-warningtree-p warnings)) :rule-classes :rewrite)
Theorem:
(defthm vl-distlist-condcheck-of-vl-distlist-fix-x (equal (vl-distlist-condcheck (vl-distlist-fix x) tests-above) (vl-distlist-condcheck x tests-above)))
Theorem:
(defthm vl-distlist-condcheck-vl-distlist-equiv-congruence-on-x (implies (vl-distlist-equiv x x-equiv) (equal (vl-distlist-condcheck x tests-above) (vl-distlist-condcheck x-equiv tests-above))) :rule-classes :congruence)
Theorem:
(defthm vl-distlist-condcheck-of-vl-exprlist-fix-tests-above (equal (vl-distlist-condcheck x (vl-exprlist-fix tests-above)) (vl-distlist-condcheck x tests-above)))
Theorem:
(defthm vl-distlist-condcheck-vl-exprlist-equiv-congruence-on-tests-above (implies (vl-exprlist-equiv tests-above tests-above-equiv) (equal (vl-distlist-condcheck x tests-above) (vl-distlist-condcheck x tests-above-equiv))) :rule-classes :congruence)