summaryrefslogtreecommitdiff
path: root/compiler/utils/GraphOps.hs
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-02-07 01:57:14 +0000
committerIan Lynagh <igloo@earth.li>2008-02-07 01:57:14 +0000
commit727fae32ea0b6ca6ebdf1b3137649813e4d7ac3d (patch)
tree9ee1d6055290f255503287d54ecce59862a6a278 /compiler/utils/GraphOps.hs
parentd6a7aff83282d537e160264604d6703e2698600e (diff)
downloadhaskell-727fae32ea0b6ca6ebdf1b3137649813e4d7ac3d.tar.gz
Make some more modules use LazyUniqFM instead of UniqFM
If these modules use UniqFM then we get a stack overflow when compiling modules that use fundeps. I haven't tracked down the actual cause.
Diffstat (limited to 'compiler/utils/GraphOps.hs')
-rw-r--r--compiler/utils/GraphOps.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/GraphOps.hs b/compiler/utils/GraphOps.hs
index 880f3c65cd..a82ff68629 100644
--- a/compiler/utils/GraphOps.hs
+++ b/compiler/utils/GraphOps.hs
@@ -24,7 +24,7 @@ import GraphBase
import Outputable
import Unique
import UniqSet
-import UniqFM
+import LazyUniqFM
import Data.List hiding (union)
import Data.Maybe