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/Regalloc.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/Regalloc.ml') diff --git a/backend/Regalloc.ml b/backend/Regalloc.ml index f8cd561f..b73cbf57 100644 --- a/backend/Regalloc.ml +++ b/backend/Regalloc.ml @@ -278,7 +278,7 @@ end module Liveness_Solver = Backward_Dataflow_Solver(VSetLat)(NodeSetBackward) let liveness_analysis f = - match Liveness_Solver.fixpoint (successors f) (transfer_live f) [] with + match Liveness_Solver.fixpoint f.fn_code successors_block (transfer_live f) [] with | None -> assert false | Some lv -> lv -- cgit