From 708cd2c7767b497b9ac3dae1ce51973195d00acc Mon Sep 17 00:00:00 2001 From: xleroy Date: Wed, 6 Sep 2006 19:44:10 +0000 Subject: Csem: l'hypothese de typage sur main est inutile (assuree par wt_program) Ctyping: relaxation de l'hypothese de typage sur main Cshmgenproof3: adaptation a ces changements. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@82 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- cfrontend/Csem.v | 1 - 1 file changed, 1 deletion(-) (limited to 'cfrontend/Csem.v') diff --git a/cfrontend/Csem.v b/cfrontend/Csem.v index ed5a1b4c..a76dcb49 100644 --- a/cfrontend/Csem.v +++ b/cfrontend/Csem.v @@ -742,5 +742,4 @@ Definition exec_program (p: program) (t: trace) (r: val) : Prop := exists b, exists f, exists m1, Genv.find_symbol ge p.(prog_main) = Some b /\ Genv.find_funct_ptr ge b = Some f /\ - type_of_fundef f = Tfunction Tnil (Tint I32 Signed) /\ eval_funcall ge m0 f nil t m1 r. -- cgit