[Git][ghc/ghc][wip/spj-try-opt-coercion] Add a type signature
Simon Peyton Jones pushed to branch wip/spj-try-opt-coercion at Glasgow Haskell Compiler / GHC Commits: cd277d10 by Simon Peyton Jones at 2026-01-05T09:36:53+00:00 Add a type signature - - - - - 1 changed file: - compiler/GHC/Core/FVs.hs Changes: ===================================== compiler/GHC/Core/FVs.hs ===================================== @@ -647,6 +647,7 @@ idUnfoldingFVs id = stableUnfoldingFVs (realIdUnfolding id) `orElse` emptyFV stableUnfoldingVars :: Unfolding -> Maybe VarSet stableUnfoldingVars unf = fvVarSet `fmap` stableUnfoldingFVs unf +stableUnfoldingFVs :: Unfolding -> Maybe FV stableUnfoldingFVs unf | isStableUnfolding unf = Just (unfoldingFVs unf) | otherwise = Nothing View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/cd277d10a8723332d38165a04d486697... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/cd277d10a8723332d38165a04d486697... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Simon Peyton Jones (@simonpj)