diff options
author | simonmar <unknown> | 2000-07-11 16:03:37 +0000 |
---|---|---|
committer | simonmar <unknown> | 2000-07-11 16:03:37 +0000 |
commit | 084c8a024934d05d39e2c080b00b362605f893b9 (patch) | |
tree | b6bad263d4a41ce1851d4553ff3464eacee5aff8 /ghc/compiler/codeGen/CodeGen.lhs | |
parent | 1f3a9da2d3b6dcaf0634b3d4f5dbe54f069eebb8 (diff) | |
download | haskell-084c8a024934d05d39e2c080b00b362605f893b9.tar.gz |
[project @ 2000-07-11 16:03:37 by simonmar]
remove unused imports; misc cleanup
Diffstat (limited to 'ghc/compiler/codeGen/CodeGen.lhs')
-rw-r--r-- | ghc/compiler/codeGen/CodeGen.lhs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ghc/compiler/codeGen/CodeGen.lhs b/ghc/compiler/codeGen/CodeGen.lhs index 584d48e9b2..80fd8f923d 100644 --- a/ghc/compiler/codeGen/CodeGen.lhs +++ b/ghc/compiler/codeGen/CodeGen.lhs @@ -25,7 +25,7 @@ import AbsCSyn import CLabel ( CLabel, mkSRTLabel, mkClosureLabel, mkModuleInitLabel ) import PprAbsC ( dumpRealC ) -import AbsCUtils ( mkAbstractCs, mkAbsCStmts, flattenAbsC ) +import AbsCUtils ( mkAbstractCs, flattenAbsC ) import CgBindery ( CgIdInfo, addBindC, addBindsC ) import CgClosure ( cgTopRhsClosure ) import CgCon ( cgTopRhsCon ) @@ -35,10 +35,9 @@ import CmdLineOpts ( opt_SccProfilingOn, opt_EnsureSplittableC, opt_D_dump_absC ) import CostCentre ( CostCentre, CostCentreStack ) -import FiniteMap ( FiniteMap ) import Id ( Id, idName ) import Module ( Module, moduleString, moduleName, - ModuleName, moduleNameString ) + ModuleName ) import PrimRep ( getPrimRepSize, PrimRep(..) ) import Type ( Type ) import TyCon ( TyCon, isDataTyCon ) |