summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorTwan van Laarhoven <twanvl@gmail.com>2008-01-26 23:17:32 +0000
committerTwan van Laarhoven <twanvl@gmail.com>2008-01-26 23:17:32 +0000
commit5aa6d2287415c3b356e1ca18a05be95add08b2dd (patch)
treed8a39a57e9836bc5cb0e05ed523c127981624c1f /compiler
parentf7c8513de81ccb1bca62a8e4642926f19266845b (diff)
downloadhaskell-5aa6d2287415c3b356e1ca18a05be95add08b2dd.tar.gz
Fixed warnings in types/InstEnv
Diffstat (limited to 'compiler')
-rw-r--r--compiler/types/InstEnv.lhs15
1 files changed, 4 insertions, 11 deletions
diff --git a/compiler/types/InstEnv.lhs b/compiler/types/InstEnv.lhs
index e7b4f47a49..2d1589ca62 100644
--- a/compiler/types/InstEnv.lhs
+++ b/compiler/types/InstEnv.lhs
@@ -7,13 +7,6 @@
The bits common to TcInstDcls and TcDeriv.
\begin{code}
-{-# OPTIONS -w #-}
--- The above warning supression flag is a temporary kludge.
--- While working on this module you are encouraged to remove it and fix
--- any warnings in the module. See
--- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
--- for details
-
module InstEnv (
DFunId, OverlapFlag(..),
Instance(..), pprInstance, pprInstanceHdr, pprInstances,
@@ -40,7 +33,6 @@ import Outputable
import BasicTypes
import UniqFM
import Id
-import SrcLoc
import Data.Maybe ( isJust, isNothing )
\end{code}
@@ -139,7 +131,7 @@ instance Outputable Instance where
pprInstance :: Instance -> SDoc
-- Prints the Instance as an instance declaration
-pprInstance ispec@(Instance { is_flag = flag })
+pprInstance ispec
= hang (pprInstanceHdr ispec)
2 (ptext SLIT("--") <+> pprNameLoc (getName ispec))
@@ -191,7 +183,7 @@ instanceCantMatch :: [Maybe Name] -> [Maybe Name] -> Bool
-- possibly be instantiated to actual, nor vice versa;
-- False is non-committal
instanceCantMatch (Just t : ts) (Just a : as) = t/=a || instanceCantMatch ts as
-instanceCantMatch ts as = False -- Safe
+instanceCantMatch _ _ = False -- Safe
\end{code}
@@ -494,6 +486,7 @@ lookupInstEnv (pkg_ie, home_ie) cls tys
Nothing -> find ms us rest
---------------
+bind_fn :: TyVar -> BindFlag
bind_fn tv | isTcTyVar tv && isExistentialTyVar tv = Skolem
| otherwise = BindMe
-- The key_tys can contain skolem constants, and we can guarantee that those
@@ -539,6 +532,6 @@ insert_overlapping new_item (item:items)
where
overlap_ok = case is_flag instB of
NoOverlap -> False
- other -> True
+ _ -> True
\end{code}