summaryrefslogtreecommitdiff
path: root/compiler/utils/GraphColor.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
commit1370a4a360ec154b390c1da21d40e446739b24c8 (patch)
tree980c5beb71d643ae79a873c38c0753ad0ae002e9 /compiler/utils/GraphColor.hs
parent15575cf8f17fee0fdd3151c5dbb0a0f89b01c708 (diff)
downloadhaskell-1370a4a360ec154b390c1da21d40e446739b24c8.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/GraphColor.hs')
-rw-r--r--compiler/utils/GraphColor.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/GraphColor.hs b/compiler/utils/GraphColor.hs
index e381fbf7f6..8e7989dc8c 100644
--- a/compiler/utils/GraphColor.hs
+++ b/compiler/utils/GraphColor.hs
@@ -19,7 +19,7 @@ import GraphOps
import GraphPpr
import Unique
-import LazyUniqFM
+import UniqFM
import UniqSet
import Outputable