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.cabal.in | |
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.cabal.in')
-rw-r--r-- | compiler/ghc.cabal.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/ghc.cabal.in b/compiler/ghc.cabal.in index 1195fa6cbc..ffee979a90 100644 --- a/compiler/ghc.cabal.in +++ b/compiler/ghc.cabal.in @@ -298,7 +298,8 @@ Library GHC.Core.InstEnv GHC.Core.Lint GHC.Core.Make - GHC.Core.Map + GHC.Core.Map.Expr + GHC.Core.Map.Type GHC.Core.Multiplicity GHC.Core.Opt.Arity GHC.Core.Opt.CallArity |