summaryrefslogtreecommitdiff
path: root/libraries/ghc-bignum/src/GHC/Num/Backend.hs
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/ghc-bignum/src/GHC/Num/Backend.hs')
-rw-r--r--libraries/ghc-bignum/src/GHC/Num/Backend.hs15
1 files changed, 15 insertions, 0 deletions
diff --git a/libraries/ghc-bignum/src/GHC/Num/Backend.hs b/libraries/ghc-bignum/src/GHC/Num/Backend.hs
new file mode 100644
index 0000000000..285be2a703
--- /dev/null
+++ b/libraries/ghc-bignum/src/GHC/Num/Backend.hs
@@ -0,0 +1,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
+