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/prelude | |
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/prelude')
-rw-r--r-- | compiler/prelude/PrelInfo.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/prelude/PrelInfo.hs b/compiler/prelude/PrelInfo.hs index f16bb27b05..55ceb047a8 100644 --- a/compiler/prelude/PrelInfo.hs +++ b/compiler/prelude/PrelInfo.hs @@ -100,7 +100,7 @@ Note [About wired-in things] checker sees if the Name is wired in before looking up the name in the type environment. -* GHC.Iface.Utils prunes out wired-in things before putting them in an interface file. +* GHC.Iface.Make prunes out wired-in things before putting them in an interface file. So interface files never contain wired-in things. -} |