
Patrick pushed to branch wip/T26118-remove-hptallfaminstances-usage-during-upsweep at Glasgow Haskell Compiler / GHC Commits: 59a99c39 by soulomoon at 2025-06-12T23:54:56+08:00 Replace extendModuleEnv with extendModuleEnvWith for unionFamInstEnv in hugFamInstancesBelow - - - - - 1 changed file: - compiler/GHC/Driver/Env.hs Changes: ===================================== compiler/GHC/Driver/Env.hs ===================================== @@ -240,7 +240,7 @@ hugFamInstancesBelow = hugSomeThingsBelowUs' combine emptyModuleEnv False combine md acc = do let famInstEnv = hmiFamInstEnv md mod = hmiModule md - in extendModuleEnv acc mod famInstEnv + in extendModuleEnvWith unionFamInstEnv acc mod famInstEnv -- | Find all COMPLETE pragmas in modules that are in the transitive closure of the -- given module. View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/59a99c39c0ebd871e7f0122a05b7a58a... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/59a99c39c0ebd871e7f0122a05b7a58a... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Patrick (@soulomoon)