aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2022-01-10 14:54:18 +0100
committerGitHub <noreply@github.com>2022-01-10 14:54:18 +0100
commit85b1c4091e13dec13fe03f28e81b256c60f9f7ef (patch)
tree6d56a39217183c90643c47b9f4011c8ed2410341 /lib
parentd6b7e2dd683b9da592548fe19dabb936769350c3 (diff)
downloadcompcert-kvx-85b1c4091e13dec13fe03f28e81b256c60f9f7ef.tar.gz
compcert-kvx-85b1c4091e13dec13fe03f28e81b256c60f9f7ef.zip
Adapt w.r.t. coq/coq#15442 (#425)
coq/coq#15442 changes the way `Program` names things, to make it uniform w.r.t. the standard naming schema. This commit removes dependencies on the names chosen by `Program`. Should be backwards compatible. Co-authored-by: Xavier Leroy <xavier.leroy@college-de-france.fr>
Diffstat (limited to 'lib')
-rw-r--r--lib/Intv.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Intv.v b/lib/Intv.v
index 4b5ed77d..3a491819 100644
--- a/lib/Intv.v
+++ b/lib/Intv.v
@@ -245,8 +245,8 @@ Next Obligation.
red. lia.
Qed.
Next Obligation.
- assert (x = hi - 1 \/ x < hi - 1) by lia.
- destruct H2. congruence. auto.
+ assert (EITHER: x = hi - 1 \/ x < hi - 1) by lia.
+ destruct EITHER. congruence. auto.
Qed.
Next Obligation.
exists wildcard'; split; auto. lia.