aboutsummaryrefslogtreecommitdiffstats
path: root/aarch64
diff options
context:
space:
mode:
authorJustus Fasse <justus.fasse@etu.univ-grenoble-alpes.fr>2020-07-27 08:35:12 +0200
committerJustus Fasse <justus.fasse@etu.univ-grenoble-alpes.fr>2020-07-27 08:35:24 +0200
commit29a44f107a88ea41f9791a5398823304b84aa958 (patch)
tree855317c362fcfec5f5eca0aacee1b220105b4383 /aarch64
parent24b3245cd70f1342b95d08182d6d193382f0c59e (diff)
downloadcompcert-kvx-29a44f107a88ea41f9791a5398823304b84aa958.tar.gz
compcert-kvx-29a44f107a88ea41f9791a5398823304b84aa958.zip
Replace some auto-generated names
Diffstat (limited to 'aarch64')
-rw-r--r--aarch64/Asmgenproof.v6
1 files changed, 3 insertions, 3 deletions
diff --git a/aarch64/Asmgenproof.v b/aarch64/Asmgenproof.v
index 76f18079..a9f88991 100644
--- a/aarch64/Asmgenproof.v
+++ b/aarch64/Asmgenproof.v
@@ -639,7 +639,7 @@ Lemma find_instr_bblock:
(SIZE: 0 <= n < size bb),
exists i, is_nth_inst bb n i /\ Asm.find_instr (pos+n) tlb = Some i.
Proof.
- induction lb.
+ induction lb as [| b lb IHlb].
- intros. inversion FINDBB.
- intros pos bb tlb FINDBB UNFOLD SIZE.
destruct pos.
@@ -654,9 +654,9 @@ Proof.
destruct IH as (? & (IH_is_nth & IH_find_instr)); eauto.
eexists; split.
* apply IH_is_nth.
- * replace (Z.pos p + n) with (Z.pos p + n - size a + size a) by omega.
+ * replace (Z.pos p + n) with (Z.pos p + n - size b + size b) by omega.
eapply find_instr_bblock_tail; try assumption.
- replace (Z.pos p + n - size a) with (Z.pos p - size a + n) by omega.
+ replace (Z.pos p + n - size b) with (Z.pos p - size b + n) by omega.
apply IH_find_instr.
Admitted.