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/Mach.v | 1 + 1 file changed, 1 insertion(+) (limited to 'backend/Mach.v') diff --git a/backend/Mach.v b/backend/Mach.v index 0bb24428..f7e85c3e 100644 --- a/backend/Mach.v +++ b/backend/Mach.v @@ -61,6 +61,7 @@ Inductive instruction: Type := | Mlabel: label -> instruction | Mgoto: label -> instruction | Mcond: condition -> list mreg -> label -> instruction + | Mjumptable: mreg -> list label -> instruction | Mreturn: instruction. Definition code := list instruction. -- cgit