diff options
author | simonmar <unknown> | 1999-11-09 11:37:40 +0000 |
---|---|---|
committer | simonmar <unknown> | 1999-11-09 11:37:40 +0000 |
commit | f91f525ef00bf1663d280f60f2d1f9ba17967d5a (patch) | |
tree | 41dc536a3e3072bc869d7027517b9e9ae612bff2 /ghc/compiler/deSugar/Check.lhs | |
parent | ee6369a6d3bf8eef515285c9f9523e388c5c267e (diff) | |
download | haskell-f91f525ef00bf1663d280f60f2d1f9ba17967d5a.tar.gz |
[project @ 1999-11-09 11:37:38 by simonmar]
Fixes to Simon's lit-lit pattern commit
Diffstat (limited to 'ghc/compiler/deSugar/Check.lhs')
-rw-r--r-- | ghc/compiler/deSugar/Check.lhs | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/ghc/compiler/deSugar/Check.lhs b/ghc/compiler/deSugar/Check.lhs index cefba7e2e8..821332a481 100644 --- a/ghc/compiler/deSugar/Check.lhs +++ b/ghc/compiler/deSugar/Check.lhs @@ -28,24 +28,10 @@ import Name ( Name, mkLocalName, getOccName, isDataSymOcc, getName, import Type ( Type, splitAlgTyConApp, mkTyVarTys, isUnboxedType, splitTyConApp_maybe ) -import TysPrim ( intPrimTy, - charPrimTy, - floatPrimTy, - doublePrimTy, - addrPrimTy, - wordPrimTy - ) import TysWiredIn ( nilDataCon, consDataCon, - mkTupleTy, tupleCon, - mkUnboxedTupleTy, unboxedTupleCon, mkListTy, - charTy, charDataCon, - intTy, intDataCon, - floatTy, floatDataCon, - doubleTy, doubleDataCon, - addrTy, addrDataCon, - wordTy, wordDataCon, - stringTy + mkTupleTy, tupleCon, + mkUnboxedTupleTy, unboxedTupleCon ) import Unique ( unboundKey ) import TyCon ( tyConDataCons ) |