diff options
Diffstat (limited to 'libraries/ghc-boot/GHC/Platform.hs')
-rw-r--r-- | libraries/ghc-boot/GHC/Platform.hs | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/libraries/ghc-boot/GHC/Platform.hs b/libraries/ghc-boot/GHC/Platform.hs index 69978387ae..6c1be92512 100644 --- a/libraries/ghc-boot/GHC/Platform.hs +++ b/libraries/ghc-boot/GHC/Platform.hs @@ -29,13 +29,11 @@ module GHC.Platform , platformInIntRange , platformInWordRange , PlatformMisc(..) - , IntegerLibrary(..) , stringEncodeArch , stringEncodeOS , SseVersion (..) , BmiVersion (..) -) - + ) where import Prelude -- See Note [Why do we import Prelude here?] @@ -292,8 +290,6 @@ osSubsectionsViaSymbols _ = False data PlatformMisc = PlatformMisc { -- TODO Recalculate string from richer info? platformMisc_targetPlatformString :: String - , platformMisc_integerLibrary :: String - , platformMisc_integerLibraryType :: IntegerLibrary , platformMisc_ghcWithInterpreter :: Bool , platformMisc_ghcWithNativeCodeGen :: Bool , platformMisc_ghcWithSMP :: Bool @@ -309,11 +305,6 @@ data PlatformMisc = PlatformMisc , platformMisc_llvmTarget :: String } -data IntegerLibrary - = IntegerGMP - | IntegerSimple - deriving (Read, Show, Eq) - -- | Minimum representable Int value for the given platform platformMinInt :: Platform -> Integer platformMinInt p = case platformWordSize p of |