diff options
| author | simonmar <unknown> | 2000-07-11 16:04:38 +0000 |
|---|---|---|
| committer | simonmar <unknown> | 2000-07-11 16:04:38 +0000 |
| commit | 6e0892adec42702e7879a23587d2c7210c55a078 (patch) | |
| tree | a88b6a0787280262b709e92e4e0d13e06b698518 | |
| parent | 084c8a024934d05d39e2c080b00b362605f893b9 (diff) | |
| download | haskell-6e0892adec42702e7879a23587d2c7210c55a078.tar.gz | |
[project @ 2000-07-11 16:04:38 by simonmar]
remove unused imports
| -rw-r--r-- | ghc/compiler/cprAnalysis/CprAnalyse.lhs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/ghc/compiler/cprAnalysis/CprAnalyse.lhs b/ghc/compiler/cprAnalysis/CprAnalyse.lhs index be1c7481bd..07cddcea34 100644 --- a/ghc/compiler/cprAnalysis/CprAnalyse.lhs +++ b/ghc/compiler/cprAnalysis/CprAnalyse.lhs @@ -10,21 +10,14 @@ import CmdLineOpts ( opt_D_verbose_core2core, opt_D_dump_cpranal ) import CoreLint ( beginPass, endPass ) import CoreSyn import CoreUtils ( exprIsValue ) -import CoreUnfold ( maybeUnfoldingTemplate ) -import Var ( Var, Id, TyVar, idType, varName, varType ) import Id ( setIdCprInfo, idCprInfo, idArity, isBottomingId ) import IdInfo ( CprInfo(..) ) import VarEnv -import Type ( Type, splitFunTys, splitFunTy_maybe, splitForAllTys ) -import TyCon ( isNewTyCon, isUnLiftedTyCon ) -import DataCon ( dataConTyCon ) -import Util ( zipEqual, zipWithEqual, nTimes, mapAccumL ) +import Util ( nTimes, mapAccumL ) import Outputable -import UniqFM (ufmToList) import Maybe -import PprType( pprType ) -- Only called in debug messages \end{code} This module performs an analysis of a set of Core Bindings for the |
