Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC

Commits:

6 changed files:

Changes:

  • compiler/GHC/Unit/Module/ModIface.hs
    ... ... @@ -894,13 +894,7 @@ instance (NFData (IfaceAbiHashesExts phase), NFData (IfaceDeclExts phase)) => NF
    894 894
         `seq` rnf a14
    
    895 895
     
    
    896 896
     instance NFData IfaceCache where
    
    897
    -  rnf (IfaceCache a1 a2 a3 a4)
    
    898
    -    =  rnf a1
    
    899
    -    `seq` rnf a2
    
    900
    -    `seq` rnf a3
    
    901
    -    `seq` rnf a4
    
    902
    -
    
    903
    -
    
    897
    +  rnf = rwhnf
    
    904 898
     
    
    905 899
     forceModIface :: ModIface -> IO ()
    
    906 900
     forceModIface iface = () <$ (evaluate $ force iface)
    

  • libraries/Cabal
    1
    -Subproject commit d9b0904b49dc84e0bfc79062daf2bbdf9d22a422
    1
    +Subproject commit 8d1f5a33662be0db0654061fb53fb00e3f4417e0

  • libraries/deepseq
    1
    -Subproject commit ae2762ac241a61852c9ff4c287af234fb1ad931f
    1
    +Subproject commit 882f52f51854544a467babd8cb075e3271f5913e

  • libraries/directory
    1
    -Subproject commit 6442a3cf04f74d82cdf8c9213324313d52b23d28
    1
    +Subproject commit 8c712e834f277544fc03e96dfbbb769126dc0a7c

  • libraries/exceptions
    1
    -Subproject commit 81bfd6e0ca631f315658201ae02e30046678f056
    1
    +Subproject commit a3da039855479e3c8542e8b45986599d0414ff68

  • testsuite/tests/simplCore/should_compile/T21391.hs
    ... ... @@ -2,6 +2,8 @@
    2 2
     {-# LANGUAGE GADTs #-}
    
    3 3
     {-# LANGUAGE KindSignatures #-}
    
    4 4
     {-# LANGUAGE RankNTypes #-}
    
    5
    +{-# OPTIONS_GHC -Wno-deprecations #-}
    
    6
    +
    
    5 7
     module Web.Routing.SafeRouting where
    
    6 8
     
    
    7 9
     import Control.DeepSeq (NFData (..))