Wolfgang Jeltsch pushed to branch wip/jeltsch/more-efficient-home-unit-imports-finding at Glasgow Haskell Compiler / GHC Commits: 48eb7156 by Wolfgang Jeltsch at 2026-04-27T20:29:33+03:00 Make the `mg_complete_units` field strict - - - - - 1 changed file: - compiler/GHC/Unit/Module/Graph.hs Changes: ===================================== compiler/GHC/Unit/Module/Graph.hs ===================================== @@ -205,7 +205,7 @@ data ModuleGraph = ModuleGraph -- Cached computation, whether any of the ModuleGraphNode are isHoleModule, -- This is only used for a hack in GHC.Iface.Load to do with backpack, please -- remove this at the earliest opportunity. - , mg_complete_units :: CompleteUnits + , mg_complete_units :: !CompleteUnits -- ^ For each module name, which home unit UnitIds define it together with the set of units for which the listing is complete. } View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/48eb7156920d3a5b6ce2fd7ea8be3c61... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/48eb7156920d3a5b6ce2fd7ea8be3c61... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Wolfgang Jeltsch (@jeltsch)