diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2019-09-10 11:22:11 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-09-11 09:47:26 -0400 |
commit | d9e637dfb3a0c29b235a99363e4eb6b255aa781a (patch) | |
tree | 2a07b80f32c300ee2e0bd82281abf5bba7ca1e37 | |
parent | df6fbe035fc08332007db443d3a3f0e8c6cf75a7 (diff) | |
download | haskell-d9e637dfb3a0c29b235a99363e4eb6b255aa781a.tar.gz |
Remove dead `ncgDebugIsOn` and `NCG_DEBUG`
Haven't been used since 16206a6603e87e15d61c57456267c5f7ba68050e.
-rw-r--r-- | compiler/utils/Util.hs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/compiler/utils/Util.hs b/compiler/utils/Util.hs index ecbef752f1..51812cca75 100644 --- a/compiler/utils/Util.hs +++ b/compiler/utils/Util.hs @@ -10,7 +10,7 @@ -- module Util ( -- * Flags dependent on the compiler build - ghciSupported, debugIsOn, ncgDebugIsOn, + ghciSupported, debugIsOn, ghciTablesNextToCode, isWindowsHost, isDarwinHost, @@ -198,13 +198,6 @@ debugIsOn = True debugIsOn = False #endif -ncgDebugIsOn :: Bool -#if defined(NCG_DEBUG) -ncgDebugIsOn = True -#else -ncgDebugIsOn = False -#endif - ghciTablesNextToCode :: Bool #if defined(GHCI_TABLES_NEXT_TO_CODE) ghciTablesNextToCode = True |