summaryrefslogtreecommitdiff
path: root/compiler/utils/UniqSet.lhs
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/UniqSet.lhs
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/UniqSet.lhs')
-rw-r--r--compiler/utils/UniqSet.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/UniqSet.lhs b/compiler/utils/UniqSet.lhs
index 90e0c9f40b..9a0331547d 100644
--- a/compiler/utils/UniqSet.lhs
+++ b/compiler/utils/UniqSet.lhs
@@ -22,7 +22,7 @@ module UniqSet (
) where
import Maybes
-import LazyUniqFM
+import UniqFM
import Unique
#if ! OMIT_NATIVE_CODEGEN