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
-
a52e48b1
by Torsten Schmits at 2026-07-24T13:53:14+02:00
2 changed files:
Changes:
| ... | ... | @@ -503,7 +503,7 @@ instance Binary ModIface where |
| 503 | 503 | lazyPut bh warns
|
| 504 | 504 | lazyPut bh anns
|
| 505 | 505 | put_ bh decls
|
| 506 | - put_ bh extra_decls
|
|
| 506 | + lazyPut bh extra_decls
|
|
| 507 | 507 | put_ bh foreign_
|
| 508 | 508 | put_ bh insts
|
| 509 | 509 | put_ bh fam_insts
|
| ... | ... | @@ -536,7 +536,7 @@ instance Binary ModIface where |
| 536 | 536 | warns <- {-# SCC "bin_warns" #-} lazyGet bh
|
| 537 | 537 | anns <- {-# SCC "bin_anns" #-} lazyGet bh
|
| 538 | 538 | decls <- {-# SCC "bin_tycldecls" #-} get bh
|
| 539 | - extra_decls <- get bh
|
|
| 539 | + extra_decls <- lazyGet bh
|
|
| 540 | 540 | foreign_ <- get bh
|
| 541 | 541 | insts <- {-# SCC "bin_insts" #-} get bh
|
| 542 | 542 | fam_insts <- {-# SCC "bin_fam_insts" #-} get bh
|
| 1 | -Subproject commit 2bf01c6a9dcf6ec54f5ce99b16a411d4b13f5be9 |
|
| 1 | +Subproject commit 3d4cb3b22bb91ac80e1e602db3c6a6bb70d2b0fb |