From 76555ffd2403b3ebf1ea353063c16763e6493722 Mon Sep 17 00:00:00 2001 From: xleroy Date: Mon, 6 May 2013 11:32:22 +0000 Subject: Refactoring: move definition of chunk_of_type to AST.v. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2238 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- backend/Mach.v | 3 --- 1 file changed, 3 deletions(-) (limited to 'backend/Mach.v') diff --git a/backend/Mach.v b/backend/Mach.v index 5030de1e..ec48195c 100644 --- a/backend/Mach.v +++ b/backend/Mach.v @@ -123,9 +123,6 @@ value of the return address that the Asm code generated later will store in the reserved location. *) -Definition chunk_of_type (ty: typ) := - match ty with Tint => Mint32 | Tfloat => Mfloat64al32 | Tlong => Mint64 end. - Definition load_stack (m: mem) (sp: val) (ty: typ) (ofs: int) := Mem.loadv (chunk_of_type ty) m (Val.add sp (Vint ofs)). -- cgit