Wolfgang Jeltsch pushed to branch wip/jeltsch/more-efficient-home-unit-imports-finding at Glasgow Haskell Compiler / GHC Commits: 97bbca85 by Wolfgang Jeltsch at 2026-04-29T12:34:28+03:00 Get rid of removal of already removed unit IDs - - - - - 1 changed file: - compiler/GHC/Unit/Finder.hs Changes: ===================================== compiler/GHC/Unit/Finder.hs ===================================== @@ -274,7 +274,7 @@ sortHomeUnitsByLikelihoodFor home_module_name_providers_map mb_home_unit_id mod_ maybe cached_providing_deps (\u -> Set.delete u cached_providing_deps) mb_home_unit_id uncached_providing_deps = let candidates = Set.difference hpt_deps cached_module_providers - excluded = maybe cached_providing_deps (\u -> Set.insert u cached_providing_deps) mb_home_unit_id + excluded = maybe Set.empty Set.singleton mb_home_unit_id in Set.toList (Set.difference candidates excluded) all_deps = other_cached_providing_deps ++ uncached_providing_deps View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/97bbca8581a35a3f76f9cd73fdcabf37... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/97bbca8581a35a3f76f9cd73fdcabf37... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Wolfgang Jeltsch (@jeltsch)