Simon Peyton Jones pushed to branch wip/spj-unf-size at Glasgow Haskell Compiler / GHC
Commits:
-
41f2321f
by Simon Peyton Jones at 2026-01-02T09:29:45+00:00
1 changed file:
Changes:
| ... | ... | @@ -510,13 +510,13 @@ zipCoEnv cvs cos |
| 510 | 510 | instance Outputable Subst where
|
| 511 | 511 | ppr (Subst in_scope ids tvs cvs)
|
| 512 | 512 | = char '<' <+>
|
| 513 | - vcat [ -- InScope =" <+> in_scope_doc,
|
|
| 513 | + vcat [ -- InScope =" <+> _in_scope_doc,
|
|
| 514 | 514 | text " IdSubst =" <+> ppr ids,
|
| 515 | 515 | text " TvSubst =" <+> ppr tvs,
|
| 516 | 516 | text " CvSubst =" <+> ppr cvs
|
| 517 | 517 | ] <+>char '>'
|
| 518 | 518 | where
|
| 519 | - in_scope_doc = pprVarSet (getInScopeVars in_scope) (braces . fsep . map ppr)
|
|
| 519 | + _in_scope_doc = pprVarSet (getInScopeVars in_scope) (braces . fsep . map ppr)
|
|
| 520 | 520 | |
| 521 | 521 | {-
|
| 522 | 522 | %************************************************************************
|