diff options
author | Lemmih <lemmih@gmail.com> | 2006-03-06 03:34:26 +0000 |
---|---|---|
committer | Lemmih <lemmih@gmail.com> | 2006-03-06 03:34:26 +0000 |
commit | abf158bf9c7c076a1cb560ffa5309e840b09e384 (patch) | |
tree | 83205d983a610a0aa6b8574f94e94042978458b1 /ghc | |
parent | eeb22c33a15bc8b2b2c71739b15b0e39181dbbf9 (diff) | |
download | haskell-abf158bf9c7c076a1cb560ffa5309e840b09e384.tar.gz |
Make it clear when the symbols are using by the interpreter.
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/compiler/main/HscMain.lhs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ghc/compiler/main/HscMain.lhs b/ghc/compiler/main/HscMain.lhs index b8d9266edf..fdff73ea27 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 ) |