diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-09-24 16:41:03 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-09-30 02:49:41 -0400 |
commit | 9befd94d79a78fd53a28a4ce051a91d2215d069c (patch) | |
tree | 35380e9cae2887f8aeccb0ed7db6887fd7e0d3d9 /rts/Globals.c | |
parent | df3f58807580bc2762086e063e3823b05de6fd64 (diff) | |
download | haskell-9befd94d79a78fd53a28a4ce051a91d2215d069c.tar.gz |
Remove unused global variables
Some removed globals variables were still declared in the RTS.
They were removed in the following commits:
* 4fc6524a2a4a0003495a96c8b84783286f65c198
* 0dc7985663efa1739aafb480759e2e2e7fca2a36
* bbd3c399939311ec3e308721ab87ca6b9443f358
Diffstat (limited to 'rts/Globals.c')
-rw-r--r-- | rts/Globals.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/rts/Globals.c b/rts/Globals.c index 4a8657dedc..5569ee7910 100644 --- a/rts/Globals.c +++ b/rts/Globals.c @@ -33,13 +33,9 @@ typedef enum { SystemTimerThreadEventManagerStore, SystemTimerThreadIOManagerThreadStore, LibHSghcFastStringTable, - LibHSghcPersistentLinkerState, - LibHSghcInitLinkerDone, LibHSghcGlobalHasPprDebug, LibHSghcGlobalHasNoDebugOutput, LibHSghcGlobalHasNoStateHack, - LibHSghcStaticOptions, - LibHSghcStaticOptionsReady, MaxStoreKey } StoreKey; @@ -108,10 +104,6 @@ mkStoreAccessor(SystemEventThreadIOManagerThreadStore) mkStoreAccessor(SystemTimerThreadEventManagerStore) mkStoreAccessor(SystemTimerThreadIOManagerThreadStore) mkStoreAccessor(LibHSghcFastStringTable) -mkStoreAccessor(LibHSghcPersistentLinkerState) -mkStoreAccessor(LibHSghcInitLinkerDone) mkStoreAccessor(LibHSghcGlobalHasPprDebug) mkStoreAccessor(LibHSghcGlobalHasNoDebugOutput) mkStoreAccessor(LibHSghcGlobalHasNoStateHack) -mkStoreAccessor(LibHSghcStaticOptions) -mkStoreAccessor(LibHSghcStaticOptionsReady) |