aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Assembly/LL.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Assembly/LL.v b/src/Assembly/LL.v
index 140ef0a42..e0588214c 100644
--- a/src/Assembly/LL.v
+++ b/src/Assembly/LL.v
@@ -156,7 +156,7 @@ Module LL.
induction t as [|i0 v0 i1 v1]; simpl; intros; try reflexivity.
break_match; subst; simpl.
unfold interp_arg in *.
- cbn; rewrite v0, v1; reflexivity.
+ simpl; rewrite v0, v1; reflexivity.
Qed.
Lemma interp_under_lets {T} {_: Evaluable T} {t: type} {tC: type}