From bb9d14a3f95fc0e3c8cad10d8ea8e2b2738da7fc Mon Sep 17 00:00:00 2001 From: xleroy Date: Sun, 11 Jan 2009 11:57:02 +0000 Subject: - Added alignment constraints to memory loads and stores. - In Cminor and below, removed pointer validity check in semantics of comparisons, so that evaluation of expressions is independent of memory state. - In Cminor and below, removed "alloc" instruction. - Cleaned up commented-away parts. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@945 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- backend/LTLintyping.v | 5 ----- 1 file changed, 5 deletions(-) (limited to 'backend/LTLintyping.v') diff --git a/backend/LTLintyping.v b/backend/LTLintyping.v index 26ec066d..9f3f5896 100644 --- a/backend/LTLintyping.v +++ b/backend/LTLintyping.v @@ -67,11 +67,6 @@ Inductive wt_instr : instruction -> Prop := sig.(sig_res) = funsig.(sig_res) -> Conventions.tailcall_possible sig -> wt_instr (Ltailcall sig ros args) - | wt_Lalloc: - forall arg res, - Loc.type arg = Tint -> Loc.type res = Tint -> - loc_acceptable arg -> loc_acceptable res -> - wt_instr (Lalloc arg res) | wt_Llabel: forall lbl, wt_instr (Llabel lbl) | wt_Lgoto: forall lbl, -- cgit