diff options
author | Max Bolingbroke <batterseapower@hotmail.com> | 2008-07-31 01:23:36 +0000 |
---|---|---|
committer | Max Bolingbroke <batterseapower@hotmail.com> | 2008-07-31 01:23:36 +0000 |
commit | 044ba2360d602a5d4e3dc709b91b21d184a37f64 (patch) | |
tree | 1162da831ed8c909b171dd4da8b0bfc341e1f60c /compiler/cmm | |
parent | 058795e0b9226b8f6a1b52676e5e1ea4eead36c1 (diff) | |
download | haskell-044ba2360d602a5d4e3dc709b91b21d184a37f64.tar.gz |
Document DFMonad
Diffstat (limited to 'compiler/cmm')
-rw-r--r-- | compiler/cmm/DFMonad.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/cmm/DFMonad.hs b/compiler/cmm/DFMonad.hs index 3df5b681cf..209403e540 100644 --- a/compiler/cmm/DFMonad.hs +++ b/compiler/cmm/DFMonad.hs @@ -82,7 +82,7 @@ class DataflowAnalysis m where markFactsUnchanged :: m f () -- ^ Useful for starting a new iteration factsStatus :: m f ChangeFlag subAnalysis :: m f a -> m f a -- ^ Do a new analysis and then throw away - -- *all* the related state. + -- /all/ the related state. getFact :: BlockId -> m f f setFact :: Outputable f => BlockId -> f -> m f () |