diff options
author | xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2006-09-06 19:44:10 +0000 |
---|---|---|
committer | xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2006-09-06 19:44:10 +0000 |
commit | 708cd2c7767b497b9ac3dae1ce51973195d00acc (patch) | |
tree | adb042e3603452fc7702db0c6eb55825864e0ded /cfrontend/Csem.v | |
parent | e231ac08558e959f2ea2664082c62ced9e485c1b (diff) |
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
Diffstat (limited to 'cfrontend/Csem.v')
-rw-r--r-- | cfrontend/Csem.v | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cfrontend/Csem.v b/cfrontend/Csem.v index ed5a1b4..a76dcb4 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. |