Recognizer for vl-elabtask structures.
(vl-elabtask-p x) → *
Function:
(defun vl-elabtask-p (x) (declare (xargs :guard t)) (let ((__function__ 'vl-elabtask-p)) (declare (ignorable __function__)) (and (consp x) (eq (car x) :vl-elabtask) (b* ((stmt (cdr x))) (vl-stmt-p stmt)))))
Theorem:
(defthm consp-when-vl-elabtask-p (implies (vl-elabtask-p x) (consp x)) :rule-classes :compound-recognizer)