diff options
author | Ian Lynagh <igloo@earth.li> | 2008-02-07 01:57:14 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-02-07 01:57:14 +0000 |
commit | 727fae32ea0b6ca6ebdf1b3137649813e4d7ac3d (patch) | |
tree | 9ee1d6055290f255503287d54ecce59862a6a278 /compiler/utils/GraphBase.hs | |
parent | d6a7aff83282d537e160264604d6703e2698600e (diff) | |
download | haskell-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/GraphBase.hs')
-rw-r--r-- | compiler/utils/GraphBase.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/GraphBase.hs b/compiler/utils/GraphBase.hs index 04eda96120..3948c81a6a 100644 --- a/compiler/utils/GraphBase.hs +++ b/compiler/utils/GraphBase.hs @@ -14,7 +14,7 @@ module GraphBase ( where import UniqSet -import UniqFM +import LazyUniqFM -- | A fn to check if a node is trivially colorable |