summaryrefslogtreecommitdiff
path: root/compiler/GHC/Core.hs
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2020-02-26 16:45:27 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-03-11 08:17:19 -0400
commit20800b9a9e88a8784a3ee8720544f504aba7b4f7 (patch)
tree2353a93c9979edd08853d74e44db9691911ed947 /compiler/GHC/Core.hs
parentbb586f894532baf1bcb822afd0df7f9fea198671 (diff)
downloadhaskell-20800b9a9e88a8784a3ee8720544f504aba7b4f7.tar.gz
Split GHC.Iface.Utils module
* GHC.Iface.Recomp: recompilation avoidance stuff * GHC.Iface.Make: mkIface* Moved `writeIfaceFile` into GHC.Iface.Load alongside `readIface` and renamed it `writeIface` for consistency.
Diffstat (limited to 'compiler/GHC/Core.hs')
-rw-r--r--compiler/GHC/Core.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/GHC/Core.hs b/compiler/GHC/Core.hs
index 7a3996364c..7fe26e0f39 100644
--- a/compiler/GHC/Core.hs
+++ b/compiler/GHC/Core.hs
@@ -1276,7 +1276,7 @@ has two major consequences
In contrast, orphans are all fingerprinted together in the
mi_orph_hash field of the ModIface.
- See GHC.Iface.Utils.addFingerprints.
+ See GHC.Iface.Recomp.addFingerprints.
Orphan-hood is computed
* For class instances:
@@ -1284,8 +1284,8 @@ Orphan-hood is computed
(because it is needed during instance lookup)
* For rules and family instances:
- when we generate an IfaceRule (GHC.Iface.Utils.coreRuleToIfaceRule)
- or IfaceFamInst (GHC.Iface.Utils.instanceToIfaceInst)
+ when we generate an IfaceRule (GHC.Iface.Make.coreRuleToIfaceRule)
+ or IfaceFamInst (GHC.Iface.Make.instanceToIfaceInst)
-}
{-