Skip to content

Commit

Permalink
Fix build with GHC 9.2 on i386 (#486)
Browse files Browse the repository at this point in the history
* Fix build with GHC 9.2 on i386

Fixes #484.

* Update Data/ByteString/Builder/RealFloat/Internal.hs

Co-authored-by: ˌbodʲɪˈɡrʲim <[email protected]>

Co-authored-by: ˌbodʲɪˈɡrʲim <[email protected]>
  • Loading branch information
sjakobi and Bodigrim authored Feb 16, 2022
1 parent 731caea commit cb629e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Data/ByteString/Builder/RealFloat/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ import qualified Foreign.Storable as S (poke)
#include <ghcautoconf.h>
#include "MachDeps.h"

#if WORD_SIZE_IN_BITS < 64 && __GLASGOW_HASKELL__ < 903
#if WORD_SIZE_IN_BITS < 64 && !MIN_VERSION_ghc_prim(0,8,0)
import GHC.IntWord64
#endif

Expand Down

0 comments on commit cb629e0

Please sign in to comment.