From eafbaf41e528cc9825a503c66739a66a92ca65a8 Mon Sep 17 00:00:00 2001 From: xleroy Date: Mon, 12 Aug 2013 13:09:20 +0000 Subject: Change interface of Kildall solvers to avoid precomputing the map pc -> list of successors. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2305 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- backend/CSEproof.v | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'backend/CSEproof.v') diff --git a/backend/CSEproof.v b/backend/CSEproof.v index e0dbce85..478b6f02 100644 --- a/backend/CSEproof.v +++ b/backend/CSEproof.v @@ -320,7 +320,7 @@ Proof. unfold analyze; intros. eapply Solver.fixpoint_invariant with (P := wf_numbering); eauto. exact wf_empty_numbering. - exact (wf_transfer f). + intros. eapply wf_transfer; eauto. Qed. (** ** Properties of satisfiability of numberings *) @@ -818,8 +818,6 @@ Proof. intros. assert (Numbering.ge approx!!pc' (transfer f pc approx!!pc)). eapply Solver.fixpoint_solution; eauto. - unfold successors_list, successors. rewrite PTree.gmap1. - rewrite H0. auto. apply H3. auto. Qed. -- cgit