summaryrefslogtreecommitdiff
path: root/compiler/utils/GraphPpr.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/GraphPpr.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/GraphPpr.hs')
-rw-r--r--compiler/utils/GraphPpr.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/GraphPpr.hs b/compiler/utils/GraphPpr.hs
index 0e82b319eb..1df5158dc2 100644
--- a/compiler/utils/GraphPpr.hs
+++ b/compiler/utils/GraphPpr.hs
@@ -12,7 +12,7 @@ import GraphBase
import Outputable
import Unique
import UniqSet
-import LazyUniqFM
+import UniqFM
import Data.List
import Data.Maybe