blob: 285be2a70370e5b8c1ad1915bbaf39006581ed80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{-# LANGUAGE CPP #-}
{-# LANGUAGE NoImplicitPrelude #-}
-- | Selected backend
module GHC.Num.Backend
( module Backend
)
where
#if defined(BIGNUM_CHECK)
import GHC.Num.Backend.Check as Backend
#else
import GHC.Num.Backend.Selected as Backend
#endif
|