From 82d808ba4c001a05ecb5588a06aa43d1a3cb564a Mon Sep 17 00:00:00 2001 From: simonpj Date: Mon, 19 Mar 2001 16:17:27 +0000 Subject: [PATCH] [project @ 2001-03-19 16:17:27 by simonpj] ------------------------------- PS to: Improve orphan-module resolution ------------------------------- {This comment got missed out of the previous commit.} I also moved mkFinalIface from HscMain to MkIface, where it is much tidier. (This is related, because it's mkFinalIface that now sets mi_orphan.) --- ghc/compiler/main/HscMain.lhs | 1 + ghc/compiler/main/MkIface.lhs | 1 + 2 files changed, 2 insertions(+) diff --git a/ghc/compiler/main/HscMain.lhs b/ghc/compiler/main/HscMain.lhs index 6759621..8f695f6 100644 --- a/ghc/compiler/main/HscMain.lhs +++ b/ghc/compiler/main/HscMain.lhs @@ -1,6 +1,7 @@ % % (c) The GRASP/AQUA Project, Glasgow University, 1993-2000 % + \section[GHC_Main]{Main driver for Glasgow Haskell compiler} \begin{code} diff --git a/ghc/compiler/main/MkIface.lhs b/ghc/compiler/main/MkIface.lhs index 9ed8665..27d6aef 100644 --- a/ghc/compiler/main/MkIface.lhs +++ b/ghc/compiler/main/MkIface.lhs @@ -1,6 +1,7 @@ % % (c) The GRASP/AQUA Project, Glasgow University, 1993-1998 % + \section[MkIface]{Print an interface for a module} \begin{code} -- 1.7.10.4