summaryrefslogtreecommitdiff
path: root/compiler/cmm
diff options
context:
space:
mode:
authorMax Bolingbroke <batterseapower@hotmail.com>2008-07-31 01:23:36 +0000
committerMax Bolingbroke <batterseapower@hotmail.com>2008-07-31 01:23:36 +0000
commitb025092d120eb8799ba0408cf96fb7cacb55db76 (patch)
tree4a5bfc857ecadbf09b0bcf7b873be1ae582d26e8 /compiler/cmm
parent044ba2360d602a5d4e3dc709b91b21d184a37f64 (diff)
downloadhaskell-b025092d120eb8799ba0408cf96fb7cacb55db76.tar.gz
Document Dataflow
Diffstat (limited to 'compiler/cmm')
-rw-r--r--compiler/cmm/Dataflow.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/cmm/Dataflow.hs b/compiler/cmm/Dataflow.hs
index 81934bcb25..fc1b5769f6 100644
--- a/compiler/cmm/Dataflow.hs
+++ b/compiler/cmm/Dataflow.hs
@@ -7,7 +7,7 @@ module Dataflow (
-----------------------------------------------------------------------------
-- | Solve the fixed-point of a dataflow problem.
--
--- Complexity: O(N+H*E) calls to 'update' where
+-- Complexity: O(N+H*E) calls to the update function where:
-- N = number of nodes,
-- E = number of edges,
-- H = maximum height of the lattice for any particular node.