summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2020-03-07 21:06:39 -0500
committerJohn Ericson <git@johnericson.me>2020-03-26 12:37:08 -0400
commiteb2162c81964b3a1057c21c73574cc2b542d863a (patch)
tree84f1991a4f29e6e04e3af880b1c328b16318e3b5
parent6d172e63f3dd3590b0a57371efb8f924f1fcdf05 (diff)
downloadhaskell-eb2162c81964b3a1057c21c73574cc2b542d863a.tar.gz
Remove unused `ghciTablesNextToCode` from compiler proper
-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