Skip to content

Commit

Permalink
Fix divergence of Ltac match in 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross committed Nov 3, 2016
1 parent 652ea56 commit daff502
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Util/PartiallyReifiedProp.v
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ Definition reified_Prop_eq (x y : reified_Prop)
Section rel.
Local Ltac t :=
cbv;
repeat (break_match
repeat (match goal with |- forall x, _ => intro end (* work around broken Ltac [match] in 8.4 that diverges on things under binders *)
|| break_match
|| break_match_hyps
|| intro
|| (simpl in * )
|| intuition try congruence
Expand Down

0 comments on commit daff502

Please sign in to comment.