diff options
author | partain <unknown> | 1996-04-08 16:18:20 +0000 |
---|---|---|
committer | partain <unknown> | 1996-04-08 16:18:20 +0000 |
commit | 7b0181919416d8f04324575b7e17031ca692f5b0 (patch) | |
tree | 250194af10d02f2851243687dd515d556232a431 /ghc/compiler/codeGen | |
parent | f9120c200bcf613b58d742802172fb4c08171f0d (diff) | |
download | haskell-7b0181919416d8f04324575b7e17031ca692f5b0.tar.gz |
[project @ 1996-04-08 16:15:43 by partain]
SLPJ 1.3 hacks through 960408
Diffstat (limited to 'ghc/compiler/codeGen')
-rw-r--r-- | ghc/compiler/codeGen/CgBindery.lhs | 2 | ||||
-rw-r--r-- | ghc/compiler/codeGen/CgConTbls.lhs | 2 | ||||
-rw-r--r-- | ghc/compiler/codeGen/ClosureInfo.lhs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ghc/compiler/codeGen/CgBindery.lhs b/ghc/compiler/codeGen/CgBindery.lhs index e678d180d4..8c5814a7ad 100644 --- a/ghc/compiler/codeGen/CgBindery.lhs +++ b/ghc/compiler/codeGen/CgBindery.lhs @@ -44,7 +44,7 @@ import Id ( idPrimRep, toplevelishId, isDataCon, GenId{-instance NamedThing-} ) import Maybes ( catMaybes ) -import Outputable ( isLocallyDefined ) +import Name ( isLocallyDefined ) import PprAbsC ( pprAmode ) import PprStyle ( PprStyle(..) ) import StgSyn ( StgArg(..), StgLiveVars(..), GenStgArg(..) ) diff --git a/ghc/compiler/codeGen/CgConTbls.lhs b/ghc/compiler/codeGen/CgConTbls.lhs index a3113e441f..c35219edd1 100644 --- a/ghc/compiler/codeGen/CgConTbls.lhs +++ b/ghc/compiler/codeGen/CgConTbls.lhs @@ -40,7 +40,7 @@ import Id ( dataConTag, dataConSig, emptyIdSet, GenId{-instance NamedThing-} ) -import Outputable ( getLocalName ) +import Name ( getLocalName ) import PrimRep ( getPrimRepSize, PrimRep(..) ) import TyCon ( tyConDataCons, mkSpecTyCon ) import Type ( typePrimRep ) diff --git a/ghc/compiler/codeGen/ClosureInfo.lhs b/ghc/compiler/codeGen/ClosureInfo.lhs index 6256db0a14..f7eb45a539 100644 --- a/ghc/compiler/codeGen/ClosureInfo.lhs +++ b/ghc/compiler/codeGen/ClosureInfo.lhs @@ -86,7 +86,7 @@ import Id ( idType, idPrimRep, getIdArity, ) import IdInfo ( arityMaybe ) import Maybes ( assocMaybe, maybeToBool ) -import Outputable ( isLocallyDefined, getLocalName ) +import Name ( isLocallyDefined, getLocalName ) import PprStyle ( PprStyle(..) ) import PprType ( GenType{-instance Outputable-} ) import PrimRep ( getPrimRepSize, separateByPtrFollowness ) |