diff options
author | simonpj <unknown> | 2000-10-25 13:51:52 +0000 |
---|---|---|
committer | simonpj <unknown> | 2000-10-25 13:51:52 +0000 |
commit | 243dedb8741d13162fe944ebf2adace921e0108d (patch) | |
tree | 1aa94091cfddb2a6f30ca31a92573e5d0688f673 /ghc/compiler/codeGen/CodeGen.lhs | |
parent | 90fa6b84fdc99ba99c0b7df9691ca69d50b62530 (diff) | |
download | haskell-243dedb8741d13162fe944ebf2adace921e0108d.tar.gz |
[project @ 2000-10-25 13:51:50 by simonpj]
Wibbles
Diffstat (limited to 'ghc/compiler/codeGen/CodeGen.lhs')
-rw-r--r-- | ghc/compiler/codeGen/CodeGen.lhs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/ghc/compiler/codeGen/CodeGen.lhs b/ghc/compiler/codeGen/CodeGen.lhs index e707cb0e0f..90bc8f94a1 100644 --- a/ghc/compiler/codeGen/CodeGen.lhs +++ b/ghc/compiler/codeGen/CodeGen.lhs @@ -22,8 +22,7 @@ module CodeGen ( codeGen ) where import StgSyn import CgMonad import AbsCSyn -import CLabel ( CLabel, mkSRTLabel, mkClosureLabel, - mkModuleInitLabel, labelDynamic ) +import CLabel ( CLabel, mkSRTLabel, mkClosureLabel, mkModuleInitLabel ) import PprAbsC ( dumpRealC ) import AbsCUtils ( mkAbstractCs, flattenAbsC ) @@ -36,16 +35,13 @@ import CmdLineOpts ( DynFlags, DynFlag(..), opt_SccProfilingOn, opt_EnsureSplittableC ) import CostCentre ( CostCentre, CostCentreStack ) import Id ( Id, idName ) -import Module ( Module, moduleString, moduleName, - ModuleName ) -import PrimRep ( getPrimRepSize, PrimRep(..) ) -import Type ( Type ) +import Module ( Module ) +import PrimRep ( PrimRep(..) ) import TyCon ( TyCon, isDataTyCon ) import Class ( Class, classTyCon ) import BasicTypes ( TopLevelFlag(..) ) import UniqSupply ( mkSplitUniqSupply ) import ErrUtils ( dumpIfSet_dyn ) -import Util import Panic ( assertPanic ) \end{code} |