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/Linearizeaux.ml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'backend/Linearizeaux.ml') diff --git a/backend/Linearizeaux.ml b/backend/Linearizeaux.ml index b2738605..1f4e5fac 100644 --- a/backend/Linearizeaux.ml +++ b/backend/Linearizeaux.ml @@ -96,6 +96,8 @@ let basic_blocks f joins = | Ltailcall (sig0, ros, args) -> end_block blk minpc | Lcond (cond, args, ifso, ifnot) -> end_block blk minpc; start_block ifso; start_block ifnot + | Ljumptable(arg, tbl) -> + end_block blk minpc; List.iter start_block tbl | Lreturn optarg -> end_block blk minpc (* next_in_block: check if join point and either extend block or start block *) -- cgit