(vl-lifetime-string x) → *
Function:
(defun vl-lifetime-string (x) (declare (xargs :guard (vl-lifetime-p x))) (let ((__function__ 'vl-lifetime-string)) (declare (ignorable __function__)) (case (vl-lifetime-fix x) ('nil "") (:vl-static "static") (:vl-automatic "automatic") (otherwise (progn$ (impossible) "")))))
Theorem:
(defthm vl-lifetime-string-of-vl-lifetime-fix-x (equal (vl-lifetime-string (vl-lifetime-fix x)) (vl-lifetime-string x)))
Theorem:
(defthm vl-lifetime-string-vl-lifetime-equiv-congruence-on-x (implies (vl-lifetime-equiv x x-equiv) (equal (vl-lifetime-string x) (vl-lifetime-string x-equiv))) :rule-classes :congruence)