summaryrefslogtreecommitdiff
path: root/extraction/Kildall.ml.patch
diff options
context:
space:
mode:
Diffstat (limited to 'extraction/Kildall.ml.patch')
-rw-r--r--extraction/Kildall.ml.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/extraction/Kildall.ml.patch b/extraction/Kildall.ml.patch
new file mode 100644
index 0000000..a091385
--- /dev/null
+++ b/extraction/Kildall.ml.patch
@@ -0,0 +1,22 @@
+*** Kildall.ml.orig 2006-02-09 11:47:52.000000000 +0100
+--- Kildall.ml 2006-02-09 13:42:35.103321691 +0100
+***************
+*** 191,199 ****
+ Maps.PMap.t option **)
+
+ let fixpoint successors topnode transf entrypoints =
+! DS.fixpoint (fun s ->
+! Maps.PMap.get s (make_predecessors successors topnode)) topnode transf
+! entrypoints
+ end
+
+ module type ORDERED_TYPE_WITH_TOP =
+--- 191,198 ----
+ Maps.PMap.t option **)
+
+ let fixpoint successors topnode transf entrypoints =
+! let pred = make_predecessors successors topnode in
+! DS.fixpoint (fun s -> Maps.PMap.get s pred) topnode transf entrypoints
+ end
+
+ module type ORDERED_TYPE_WITH_TOP =