aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorGaƫtan Gilbert <gaetan.gilbert@skyskimmer.net>2021-10-03 18:16:47 +0200
committerGitHub <noreply@github.com>2021-10-03 18:16:47 +0200
commita2a2529d78b86ece65cfc03fa8670538b85bc991 (patch)
tree83ff6fa2383b2bb69bd1066bd539e24e8c50a8f9 /common
parent11aaba64355ac8d912aee9b426476bf09c46bef1 (diff)
downloadcompcert-kvx-a2a2529d78b86ece65cfc03fa8670538b85bc991.tar.gz
compcert-kvx-a2a2529d78b86ece65cfc03fa8670538b85bc991.zip
Adapt to coq/coq#13837 ("apply with" does not rename arguments) (#417)
The change is backward compatible with Coq 8.9 to 8.13 (at least).
Diffstat (limited to 'common')
-rw-r--r--common/Smallstep.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Smallstep.v b/common/Smallstep.v
index f337ba3c..06a18e7d 100644
--- a/common/Smallstep.v
+++ b/common/Smallstep.v
@@ -960,7 +960,7 @@ Qed.
Lemma forward_simulation_determ: forward_simulation L1 L2.
Proof.
- apply Forward_simulation with (order0 := lex_ord order lt) (match_states0 := match_states_later);
+ apply @Forward_simulation with (order := lex_ord order lt) (match_states := match_states_later);
constructor.
- apply wf_lex_ord. apply wf_order. apply lt_wf.
- intros. exploit match_initial_states; eauto. intros (i & s2 & A & B).