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/coreSyn | |
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/coreSyn')
-rw-r--r-- | compiler/coreSyn/CoreSubst.lhs | 2 | ||||
-rw-r--r-- | compiler/coreSyn/CoreTidy.lhs | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/compiler/coreSyn/CoreSubst.lhs b/compiler/coreSyn/CoreSubst.lhs index 8306c04611..1c81d8859a 100644 --- a/compiler/coreSyn/CoreSubst.lhs +++ b/compiler/coreSyn/CoreSubst.lhs @@ -45,6 +45,8 @@ import Outputable import PprCore () -- Instances import Util import FastTypes + +import Data.List \end{code} diff --git a/compiler/coreSyn/CoreTidy.lhs b/compiler/coreSyn/CoreTidy.lhs index 95c3ac45d3..ea89fcc187 100644 --- a/compiler/coreSyn/CoreTidy.lhs +++ b/compiler/coreSyn/CoreTidy.lhs @@ -26,6 +26,8 @@ import OccName import SrcLoc import Maybes import Util + +import Data.List \end{code} |