[commit: ghc] ghc-8.2: Comments only (0cdb357)
git at git.haskell.org
git at git.haskell.org
Wed May 3 13:27:02 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : ghc-8.2
Link : http://ghc.haskell.org/trac/ghc/changeset/0cdb3579c1f48308e37d6ae5524f1993239f201f/ghc
>---------------------------------------------------------------
commit 0cdb3579c1f48308e37d6ae5524f1993239f201f
Author: Simon Peyton Jones <simonpj at microsoft.com>
Date: Tue Apr 25 13:15:44 2017 +0100
Comments only
(cherry picked from commit 4d5ab1f89ab4c082c10f67616ca4308d67923486)
>---------------------------------------------------------------
0cdb3579c1f48308e37d6ae5524f1993239f201f
compiler/typecheck/TcRnTypes.hs | 22 +++++++++++++++-------
1 file changed, 15 insertions(+), 7 deletions(-)
diff --git a/compiler/typecheck/TcRnTypes.hs b/compiler/typecheck/TcRnTypes.hs
index 1364027..e52772d 100644
--- a/compiler/typecheck/TcRnTypes.hs
+++ b/compiler/typecheck/TcRnTypes.hs
@@ -85,7 +85,7 @@ module TcRnTypes(
andWC, unionsWC, mkSimpleWC, mkImplicWC,
addInsols, getInsolubles, insolublesOnly, addSimples, addImplics,
tyCoVarsOfWC, dropDerivedWC, dropDerivedSimples, dropDerivedInsols,
- tyCoVarsOfWCList,
+ tyCoVarsOfWCList, trulyInsoluble,
isDroppableDerivedLoc, insolubleImplic,
arisesFromGivens,
@@ -2374,7 +2374,11 @@ So a Given has EvVar inside it rather than (as previously) an EvTerm.
-- EvVarDest.
data TcEvDest
= EvVarDest EvVar -- ^ bind this var to the evidence
+ -- EvVarDest is always used for non-type-equalities
+ -- e.g. class constraints
+
| HoleDest CoercionHole -- ^ fill in this hole with the evidence
+ -- HoleDest is always used for type-equalities
-- See Note [Coercion holes] in TyCoRep
data CtEvidence
@@ -2421,12 +2425,16 @@ ctEvTerm ev@(CtWanted { ctev_dest = HoleDest _ }) = EvCoercion $ ctEvCoercion ev
ctEvTerm ev = EvId (ctEvId ev)
ctEvCoercion :: CtEvidence -> Coercion
-ctEvCoercion ev@(CtWanted { ctev_dest = HoleDest hole, ctev_pred = pred })
- = case getEqPredTys_maybe pred of
- Just (role, ty1, ty2) -> mkHoleCo hole role ty1 ty2
- _ -> pprPanic "ctEvTerm" (ppr ev)
-ctEvCoercion (CtGiven { ctev_evar = ev_id }) = mkTcCoVarCo ev_id
-ctEvCoercion ev = pprPanic "ctEvCoercion" (ppr ev)
+ctEvCoercion (CtGiven { ctev_evar = ev_id })
+ = mkTcCoVarCo ev_id
+ctEvCoercion (CtWanted { ctev_dest = dest, ctev_pred = pred })
+ | HoleDest hole <- dest
+ , Just (role, ty1, ty2) <- getEqPredTys_maybe pred
+ = -- ctEvCoercion is only called on type equalities
+ -- and they always have HoleDests
+ mkHoleCo hole role ty1 ty2
+ctEvCoercion ev
+ = pprPanic "ctEvCoercion" (ppr ev)
ctEvId :: CtEvidence -> TcId
ctEvId (CtWanted { ctev_dest = EvVarDest ev }) = ev
More information about the ghc-commits
mailing list