summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compiler/utils/Util.hs8
1 files changed, 0 insertions, 8 deletions
diff --git a/compiler/utils/Util.hs b/compiler/utils/Util.hs
index 35642f9166..b343d9cf8b 100644
--- a/compiler/utils/Util.hs
+++ b/compiler/utils/Util.hs
@@ -13,7 +13,6 @@
module Util (
-- * Flags dependent on the compiler build
ghciSupported, debugIsOn,
- ghciTablesNextToCode,
isWindowsHost, isDarwinHost,
-- * Miscellaneous higher-order functions
@@ -203,13 +202,6 @@ debugIsOn = True
debugIsOn = False
#endif
-ghciTablesNextToCode :: Bool
-#if defined(GHCI_TABLES_NEXT_TO_CODE)
-ghciTablesNextToCode = True
-#else
-ghciTablesNextToCode = False
-#endif
-
isWindowsHost :: Bool
#if defined(mingw32_HOST_OS)
isWindowsHost = True