From: simonpj Date: Mon, 19 Mar 2001 16:17:27 +0000 (+0000) Subject: [project @ 2001-03-19 16:17:27 by simonpj] X-Git-Tag: Approximately_9120_patches~2378 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=82d808ba4c001a05ecb5588a06aa43d1a3cb564a;p=ghc-hetmet.git [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.) --- 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}