Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
-
fa5defde
by Rodrigo Mesquita at 2026-06-18T05:19:11-04:00
1 changed file:
Changes:
| ... | ... | @@ -640,11 +640,11 @@ tyOracle ty_st@(TySt n inert) cts |
| 640 | 640 | -- return the new inert set and increment the sequence number n
|
| 641 | 641 | ; return (TySt (n+1) <$> mb_new_inert) }
|
| 642 | 642 | |
| 643 | --- | Allocates a fresh 'EvVar' name for 'PredTy's.
|
|
| 643 | +-- | Allocates a fresh 'EvVar' name for 'PredTy's
|
|
| 644 | 644 | nameTyCt :: PredType -> DsM EvVar
|
| 645 | 645 | nameTyCt pred_ty = do
|
| 646 | 646 | unique <- getUniqueM
|
| 647 | - let occname = mkVarOccFS (fsLit ("pm_"++show unique))
|
|
| 647 | + let occname = mkVarOccFS $ fsLit "pm"
|
|
| 648 | 648 | return (mkUserLocalOrCoVar occname unique ManyTy pred_ty noSrcSpan)
|
| 649 | 649 | |
| 650 | 650 | -----------------------------
|