diff options
author | Ian Lynagh <igloo@earth.li> | 2007-07-02 12:26:51 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-07-02 12:26:51 +0000 |
commit | 262c142b90c94ca1aa577c950a6ceae1f255e2d6 (patch) | |
tree | e1de9880b055869186693df6bb93928c1272f944 /compiler/stranal | |
parent | 00c8fa011bed11d95016c13a75e93bc94a4f6aa5 (diff) | |
download | haskell-262c142b90c94ca1aa577c950a6ceae1f255e2d6.tar.gz |
Remove mapAccumL, mapAccumR, mapAccumB
mapAccumL and mapAccumR are in Data.List now.
mapAccumB is unused.
Diffstat (limited to 'compiler/stranal')
-rw-r--r-- | compiler/stranal/DmdAnal.lhs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/stranal/DmdAnal.lhs b/compiler/stranal/DmdAnal.lhs index 4c5de9616f..84c189e56b 100644 --- a/compiler/stranal/DmdAnal.lhs +++ b/compiler/stranal/DmdAnal.lhs @@ -43,11 +43,13 @@ import UniqFM ( plusUFM_C, addToUFM_Directly, lookupUFM_Directly, import Type ( isUnLiftedType, coreEqType, splitTyConApp_maybe ) import Coercion ( coercionKind ) import CoreLint ( showPass, endPass ) -import Util ( mapAndUnzip, mapAccumL, mapAccumR, lengthIs ) +import Util ( mapAndUnzip, lengthIs ) import BasicTypes ( Arity, TopLevelFlag(..), isTopLevel, isNeverActive, RecFlag(..), isRec ) import Maybes ( orElse, expectJust ) import Outputable + +import Data.List \end{code} To think about |