Get the lvalue field from a asm-output.
(asm-output->lvalue x) → lvalue
This is an ordinary field accessor created by fty::defprod.
Function:
(defun asm-output->lvalue$inline (x) (declare (xargs :guard (asm-outputp x))) (declare (xargs :guard t)) (mbe :logic (b* ((x (and t x))) (expr-fix (cdr (cdr x)))) :exec (cdr (cdr x))))
Theorem:
(defthm exprp-of-asm-output->lvalue (b* ((lvalue (asm-output->lvalue$inline x))) (exprp lvalue)) :rule-classes :rewrite)
Theorem:
(defthm asm-output->lvalue$inline-of-asm-output-fix-x (equal (asm-output->lvalue$inline (asm-output-fix x)) (asm-output->lvalue$inline x)))
Theorem:
(defthm asm-output->lvalue$inline-asm-output-equiv-congruence-on-x (implies (asm-output-equiv x x-equiv) (equal (asm-output->lvalue$inline x) (asm-output->lvalue$inline x-equiv))) :rule-classes :congruence)