diff options
Diffstat (limited to 'compiler/GHC/ByteCode/InfoTable.hs')
-rw-r--r-- | compiler/GHC/ByteCode/InfoTable.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/ByteCode/InfoTable.hs b/compiler/GHC/ByteCode/InfoTable.hs index 4a11ee4b56..84b97a85ba 100644 --- a/compiler/GHC/ByteCode/InfoTable.hs +++ b/compiler/GHC/ByteCode/InfoTable.hs @@ -37,7 +37,7 @@ import GHC.Utils.Panic -- Make info tables for the data decls in this module mkITbls :: Interp -> Profile -> [TyCon] -> IO ItblEnv mkITbls interp profile tcs = - foldr plusNameEnv emptyNameEnv <$> + foldr plusNameEnv emptyNameEnv <$> -- mapM mkITbl (filter isDataTyCon tcs) where mkITbl :: TyCon -> IO ItblEnv |