File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -824,13 +824,16 @@ intros. eapply derives_trans; try eassumption; auto.
824
824
Qed .
825
825
826
826
Ltac quick_typecheck3 :=
827
+ (* do not clear hyps anymore! See issue #772
827
828
clear;
828
829
repeat match goal with
829
830
| H := _ |- _ => clear H
830
831
| H : _ |- _ => clear H
831
- end ;
832
+ end; *)
832
833
apply quick_derives_right; clear; go_lowerx; intros;
833
- clear; repeat apply andp_right; auto; fail.
834
+ clear; repeat apply andp_right;
835
+ try apply derives_refl; (* see issue #756 *)
836
+ auto; fail.
834
837
835
838
Ltac default_entailer_for_load_store :=
836
839
repeat match goal with H := _ |- _ => clear H end ;
Original file line number Diff line number Diff line change @@ -1785,7 +1785,9 @@ Qed.
1785
1785
Ltac quick_typecheck3 :=
1786
1786
(* do not clear hyps anymore! See issue #772 *)
1787
1787
apply quick_derives_right; go_lowerx; intros;
1788
- repeat apply andp_right; auto; fail.
1788
+ repeat apply andp_right;
1789
+ try apply derives_refl; (* see issue #756 *)
1790
+ auto; fail.
1789
1791
1790
1792
Ltac default_entailer_for_load_store :=
1791
1793
(* Don't clear! See issue #772 repeat match goal with H := _ |- _ => clear H end; *)
You can’t perform that action at this time.
0 commit comments