From: Lemmih Date: Mon, 6 Mar 2006 03:34:26 +0000 (+0000) Subject: Make it clear when the symbols are using by the interpreter. X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=abf158bf9c7c076a1cb560ffa5309e840b09e384;p=ghc-hetmet.git Make it clear when the symbols are using by the interpreter. --- diff --git a/ghc/compiler/main/HscMain.lhs b/ghc/compiler/main/HscMain.lhs index b8d9266..fdff73e 100644 --- a/ghc/compiler/main/HscMain.lhs +++ b/ghc/compiler/main/HscMain.lhs @@ -32,6 +32,8 @@ import Linker ( HValue, linkExpr ) import CoreTidy ( tidyExpr ) import CorePrep ( corePrepExpr ) import Flattening ( flattenExpr ) +import Desugar ( deSugarExpr ) +import SimplCore ( simplifyExpr ) import TcRnDriver ( tcRnStmt, tcRnExpr, tcRnType ) import Type ( Type ) import PrelNames ( iNTERACTIVE ) @@ -58,7 +60,7 @@ import IfaceEnv ( initNameCache ) import LoadIface ( ifaceStats, initExternalPackageState ) import PrelInfo ( wiredInThings, basicKnownKeyNames ) import MkIface ( checkOldIface, mkIface, writeIfaceFile ) -import Desugar ( deSugar, deSugarExpr ) +import Desugar ( deSugar ) import Flattening ( flatten ) import SimplCore ( core2core, simplifyExpr ) import TidyPgm ( tidyProgram, mkBootModDetails )