never executed always true always false
    1 module GHC.Settings.Config
    2   ( module GHC.Version
    3   , cBuildPlatformString
    4   , cHostPlatformString
    5   , cProjectName
    6   , cBooterVersion
    7   , cStage
    8   ) where
    9 
   10 import GHC.Prelude
   11 
   12 import GHC.Version
   13 
   14 cBuildPlatformString :: String
   15 cBuildPlatformString = "x86_64-unknown-linux"
   16 
   17 cHostPlatformString :: String
   18 cHostPlatformString = "x86_64-unknown-linux"
   19 
   20 cProjectName          :: String
   21 cProjectName          = "The Glorious Glasgow Haskell Compilation System"
   22 
   23 cBooterVersion        :: String
   24 cBooterVersion        = "8.10.4"
   25 
   26 cStage                :: String
   27 cStage                = show (2 :: Int)