Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenConoly committed Jan 9, 2025
1 parent 7d40f6c commit b2d1b5c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions bedrock2/src/bedrock2/FE310CSemantics.v
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ Section WithParameters.
intros.
all :
repeat match goal with
| H : context[(?x =? ?y)%string] |- _ =>
destruct (x =? y)%string in *
| H: exists _, _ |- _ => destruct H
| H: _ /\ _ |- _ => destruct H
| H: False |- _ => destruct H
end; subst;
repeat match goal with
| H: _ :: _ = _ :: _ |- _ => injection H; intros; subst; clear H
end;
eauto 8 using Properties.map.same_domain_refl.
| H : context[(?x =? ?y)%string] |- _ =>
destruct (x =? y)%string in *
| H: exists _, _ |- _ => destruct H
| H: _ /\ _ |- _ => destruct H
| H: False |- _ => destruct H
end; subst;
repeat match goal with
| H: _ :: _ = _ :: _ |- _ => injection H; intros; subst; clear H
end;
eauto 8 using Properties.map.same_domain_refl.
Qed.

Global Instance ext_spec : Semantics.ExtSpec := deleakaged_ext_spec.
Expand Down

0 comments on commit b2d1b5c

Please sign in to comment.