From eafbaf41e528cc9825a503c66739a66a92ca65a8 Mon Sep 17 00:00:00 2001 From: xleroy Date: Mon, 12 Aug 2013 13:09:20 +0000 Subject: Change interface of Kildall solvers to avoid precomputing the map pc -> list of successors. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2305 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- backend/LTL.v | 3 --- 1 file changed, 3 deletions(-) (limited to 'backend/LTL.v') diff --git a/backend/LTL.v b/backend/LTL.v index d1db2c5d..e60600a2 100644 --- a/backend/LTL.v +++ b/backend/LTL.v @@ -322,6 +322,3 @@ Fixpoint successors_block (b: bblock) : list node := | Lreturn :: _ => nil | instr :: b' => successors_block b' end. - -Definition successors (f: function): PTree.t (list node) := - PTree.map1 successors_block f.(fn_code). -- cgit