Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions containers/src/Data/IntMap/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3391,11 +3391,7 @@ fromSetA f (IntSet.Tip kx bm) = buildTree f kx bm (IntSet.suffixBitMask + 1)
(Bin (Prefix (prefix .|. bits2)))
(buildTree g prefix bmask bits2)
(buildTree g (prefix + bits2) (bmask `shiftRL` bits2) bits2)
#if __GLASGOW_HASKELL__
{-# INLINABLE fromSetA #-}
#else
{-# INLINE fromSetA #-}
#endif

{--------------------------------------------------------------------
Lists
Expand Down
4 changes: 0 additions & 4 deletions containers/src/Data/IntMap/Strict/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1116,11 +1116,7 @@ fromSetA f (IntSet.Tip kx bm) = buildTree f kx bm (IntSet.suffixBitMask + 1)
(Bin (Prefix (prefix .|. bits2)))
(buildTree g prefix bmask bits2)
(buildTree g (prefix + bits2) (bmask `shiftRL` bits2) bits2)
#if __GLASGOW_HASKELL__
{-# INLINABLE fromSetA #-}
#else
{-# INLINE fromSetA #-}
#endif

{--------------------------------------------------------------------
Lists
Expand Down
4 changes: 1 addition & 3 deletions containers/src/Data/IntSet/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -618,9 +618,7 @@ alterF f k s = fmap choose (f member_)

choose True = inserted
choose False = deleted
#ifndef __GLASGOW_HASKELL__
{-# INLINE alterF #-}
#else
#ifdef __GLASGOW_HASKELL__
{-# INLINABLE [2] alterF #-}

{-# RULES
Expand Down
Loading