Torsten Schmits pushed to branch wip/torsten.schmits/mwb-26-01/fixed at Glasgow Haskell Compiler / GHC

Commits:

1 changed file:

Changes:

  • compiler/GHC/Unit/Module/ModIface.hs
    ... ... @@ -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