[Git][ghc/ghc][wip/torsten.schmits/mwb-26-01/fixed] 2 commits: determinism: haddock
Torsten Schmits pushed to branch wip/torsten.schmits/mwb-26-01/fixed at Glasgow Haskell Compiler / GHC Commits: debb34ed by Torsten Schmits at 2026-07-24T13:53:14+02:00 determinism: haddock - - - - - a52e48b1 by Torsten Schmits at 2026-07-24T13:53:14+02:00 WIP Make extra_decls lazy when loading from Binary - - - - - 2 changed files: - compiler/GHC/Unit/Module/ModIface.hs - utils/haddock Changes: ===================================== compiler/GHC/Unit/Module/ModIface.hs ===================================== @@ -503,7 +503,7 @@ instance Binary ModIface where lazyPut bh warns lazyPut bh anns put_ bh decls - put_ bh extra_decls + lazyPut bh extra_decls put_ bh foreign_ put_ bh insts put_ bh fam_insts @@ -536,7 +536,7 @@ instance Binary ModIface where warns <- {-# SCC "bin_warns" #-} lazyGet bh anns <- {-# SCC "bin_anns" #-} lazyGet bh decls <- {-# SCC "bin_tycldecls" #-} get bh - extra_decls <- get bh + extra_decls <- lazyGet bh foreign_ <- get bh insts <- {-# SCC "bin_insts" #-} get bh fam_insts <- {-# SCC "bin_fam_insts" #-} get bh ===================================== utils/haddock ===================================== @@ -1 +1 @@ -Subproject commit 2bf01c6a9dcf6ec54f5ce99b16a411d4b13f5be9 +Subproject commit 3d4cb3b22bb91ac80e1e602db3c6a6bb70d2b0fb View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/281c2e90674cfa2eba70bc6a7bb82c7... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/281c2e90674cfa2eba70bc6a7bb82c7... You're receiving this email because of your account on gitlab.haskell.org. Manage all notifications: https://gitlab.haskell.org/-/profile/notifications | Help: https://gitlab.haskell.org/help
participants (1)
-
Torsten Schmits (@torsten.schmits)