summaryrefslogtreecommitdiff
path: root/libraries/base/GHC/Bits.hs
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/base/GHC/Bits.hs')
-rw-r--r--libraries/base/GHC/Bits.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/libraries/base/GHC/Bits.hs b/libraries/base/GHC/Bits.hs
index 0ea238b7bd..f35a72dc25 100644
--- a/libraries/base/GHC/Bits.hs
+++ b/libraries/base/GHC/Bits.hs
@@ -555,6 +555,7 @@ instance Bits Integer where
zeroBits = integerZero
setBit x i = integerSetBit x (fromIntegral i)
clearBit x i = integerClearBit x (fromIntegral i)
+ {-# INLINE clearBit #-}
complementBit x i = integerComplementBit x (fromIntegral i)
bit (I# i) = integerBit# (int2Word# i)