From 74487f079dd56663f97f9731cea328931857495c Mon Sep 17 00:00:00 2001 From: xleroy Date: Tue, 10 Nov 2009 12:50:57 +0000 Subject: Added support for jump tables in back end. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1171 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- backend/CSEproof.v | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'backend/CSEproof.v') diff --git a/backend/CSEproof.v b/backend/CSEproof.v index 14027bf0..7f942464 100644 --- a/backend/CSEproof.v +++ b/backend/CSEproof.v @@ -916,6 +916,13 @@ Proof. eapply analysis_correct_1; eauto. simpl; auto. unfold transfer; rewrite H; auto. + (* Icond false *) + econstructor; split. + eapply exec_Ijumptable; eauto. + econstructor; eauto. + eapply analysis_correct_1; eauto. simpl. eapply list_nth_z_in; eauto. + unfold transfer; rewrite H; auto. + (* Ireturn *) econstructor; split. eapply exec_Ireturn; eauto. -- cgit