Skip to content

Commit

Permalink
Compatibility with older versions of Coq
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierleroy committed Aug 19, 2024
1 parent 5abe128 commit 90418d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/ValueDomain.v
Original file line number Diff line number Diff line change
Expand Up @@ -4520,7 +4520,7 @@ Proof.
id1 <> id2 -> b1 <> b2).
{ intros until id2; intros GE1 GE2 EQ1 EQ2 DIFF.
apply GE1 in EQ1; apply GE2 in EQ2.
apply Genv.find_invert_symbol in EQ1, EQ2.
apply Genv.find_invert_symbol in EQ1; apply Genv.find_invert_symbol in EQ2.
congruence. }
assert (GLOB_STACK: forall (bc1 bc2: block_classification) ge sp b1 b2 id,
genv_match bc1 ge -> bc1 sp = BCstack -> bc2 sp = BCstack ->
Expand Down

0 comments on commit 90418d0

Please sign in to comment.