diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-09-12 14:50:40 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-09-15 23:46:36 -0400 |
commit | cf7e78a3aef35741d6d296d844b99ec2529c42a3 (patch) | |
tree | edc940c21f64d324b2df5bb4e29a7922998ce9cd /compiler/GHC/StgToCmm.hs | |
parent | bd079345f633e01e8d4ff76aef39cb2aa50af6a9 (diff) | |
download | haskell-cf7e78a3aef35741d6d296d844b99ec2529c42a3.tar.gz |
Rename GHC.StgToCmm.Con -> GHC.StgToCmm.DataCon
Incredibly, Windows disallows the manipulation of any file matching
Con(\..*)?. The `GHC.StgToCmm.Con` was introduced in the renamings in
447864a9, breaking the Windows build. Work around this by renaming it to
`GHC.StgToCmm.DataCon`
Fixes #17187.
Diffstat (limited to 'compiler/GHC/StgToCmm.hs')
-rw-r--r-- | compiler/GHC/StgToCmm.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/StgToCmm.hs b/compiler/GHC/StgToCmm.hs index c7ee604692..23d6ceeaa6 100644 --- a/compiler/GHC/StgToCmm.hs +++ b/compiler/GHC/StgToCmm.hs @@ -19,7 +19,7 @@ import GHC.StgToCmm.Prof (initCostCentres, ldvEnter) import GHC.StgToCmm.Monad import GHC.StgToCmm.Env import GHC.StgToCmm.Bind -import GHC.StgToCmm.Con +import GHC.StgToCmm.DataCon import GHC.StgToCmm.Layout import GHC.StgToCmm.Utils import GHC.StgToCmm.Closure |