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 Wibble unused variables - - - - - 1 changed file: - compiler/GHC/Core/TyCo/Subst.hs Changes: ===================================== compiler/GHC/Core/TyCo/Subst.hs ===================================== @@ -510,13 +510,13 @@ zipCoEnv cvs cos instance Outputable Subst where ppr (Subst in_scope ids tvs cvs) = char '<' <+> - vcat [ -- InScope =" <+> in_scope_doc, + vcat [ -- InScope =" <+> _in_scope_doc, text " IdSubst =" <+> ppr ids, text " TvSubst =" <+> ppr tvs, text " CvSubst =" <+> ppr cvs ] <+>char '>' where - in_scope_doc = pprVarSet (getInScopeVars in_scope) (braces . fsep . map ppr) + _in_scope_doc = pprVarSet (getInScopeVars in_scope) (braces . fsep . map ppr) {- %************************************************************************ View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/41f2321f344a8da748e0c75d26bddaae... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/41f2321f344a8da748e0c75d26bddaae... You're receiving this email because of your account on gitlab.haskell.org.