diff options
author | partain <unknown> | 1996-03-21 12:48:09 +0000 |
---|---|---|
committer | partain <unknown> | 1996-03-21 12:48:09 +0000 |
commit | 0596517a9b4b2b32e5d375a986351102ac4540fc (patch) | |
tree | 1d3cdb3153c68ffaeccde89070f0fca3f1af5d77 /ghc/compiler/prelude/TysPrim.lhs | |
parent | 6c381e873e222417d9a67aeec77b9555eca7b7a8 (diff) | |
download | haskell-0596517a9b4b2b32e5d375a986351102ac4540fc.tar.gz |
[project @ 1996-03-21 12:46:33 by partain]
Final compiler stuff before Sansom renamer 960321
Diffstat (limited to 'ghc/compiler/prelude/TysPrim.lhs')
-rw-r--r-- | ghc/compiler/prelude/TysPrim.lhs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/compiler/prelude/TysPrim.lhs b/ghc/compiler/prelude/TysPrim.lhs index afc81b93b3..c16c6b87b5 100644 --- a/ghc/compiler/prelude/TysPrim.lhs +++ b/ghc/compiler/prelude/TysPrim.lhs @@ -20,14 +20,14 @@ import PrimRep ( PrimRep(..) ) -- getPrimRepInfo uses PrimRep repn import TyCon ( mkPrimTyCon, mkDataTyCon, ConsVisible(..), NewOrData(..) ) import TyVar ( GenTyVar(..), alphaTyVars ) -import Type ( applyTyCon, mkTyVarTy ) +import Type ( applyTyCon, mkTyVarTys ) import Usage ( usageOmega ) import Unique \end{code} \begin{code} -alphaTys = map mkTyVarTy alphaTyVars +alphaTys = mkTyVarTys alphaTyVars (alphaTy:betaTy:gammaTy:deltaTy:_) = alphaTys \end{code} |