diff options
author | Richard Eisenberg <rae@richarde.dev> | 2020-10-14 18:12:45 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-12-01 19:57:41 -0500 |
commit | 72a87fbc7a95c012be260d1a14374e2b06ed0a36 (patch) | |
tree | 5c8de20dd2ddfbef39324baacfe01cc30638e55f /compiler/GHC/Iface | |
parent | b94a65afe1e270245cd5b9fe03d59b726dfba8c4 (diff) | |
download | haskell-72a87fbc7a95c012be260d1a14374e2b06ed0a36.tar.gz |
Move core flattening algorithm to Core.Unify
This sets the stage for a later change, where this
algorithm will be needed from GHC.Core.InstEnv.
This commit also splits GHC.Core.Map into
GHC.Core.Map.Type and GHC.Core.Map.Expr,
in order to avoid module import cycles
with GHC.Core.
Diffstat (limited to 'compiler/GHC/Iface')
-rw-r--r-- | compiler/GHC/Iface/Ext/Utils.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Iface/Ext/Utils.hs b/compiler/GHC/Iface/Ext/Utils.hs index 5166ddc6b2..c4c86dd216 100644 --- a/compiler/GHC/Iface/Ext/Utils.hs +++ b/compiler/GHC/Iface/Ext/Utils.hs @@ -8,7 +8,7 @@ module GHC.Iface.Ext.Utils where import GHC.Prelude -import GHC.Core.Map +import GHC.Core.Map.Type import GHC.Driver.Session ( DynFlags ) import GHC.Driver.Ppr import GHC.Data.FastString ( FastString, mkFastString ) |