diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-02-26 16:45:27 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-03-11 08:17:19 -0400 |
commit | 20800b9a9e88a8784a3ee8720544f504aba7b4f7 (patch) | |
tree | 2353a93c9979edd08853d74e44db9691911ed947 /compiler/GHC/Iface/Syntax.hs | |
parent | bb586f894532baf1bcb822afd0df7f9fea198671 (diff) | |
download | haskell-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/Iface/Syntax.hs')
-rw-r--r-- | compiler/GHC/Iface/Syntax.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Iface/Syntax.hs b/compiler/GHC/Iface/Syntax.hs index 5c6aeab0e9..ebc88c272b 100644 --- a/compiler/GHC/Iface/Syntax.hs +++ b/compiler/GHC/Iface/Syntax.hs @@ -1417,7 +1417,7 @@ instance Outputable IfaceUnfolding where * * ************************************************************************ -This is used for dependency analysis in GHC.Iface.Utils, so that we +This is used for dependency analysis in GHC.Iface.Make, so that we fingerprint a declaration before the things that depend on it. It is specific to interface-file fingerprinting in the sense that we don't collect *all* Names: for example, the DFun of an instance is |