summaryrefslogtreecommitdiff
path: root/ghc
diff options
context:
space:
mode:
authorThomas Miedema <thomasmiedema@gmail.com>2014-10-07 08:48:06 -0500
committerAustin Seipp <austin@well-typed.com>2014-10-07 08:48:07 -0500
commitb3e5a7b50428edc07d11ef4db316c20029f7a3df (patch)
tree3b4d7e1be9c25581ae7ff0245f721eabd148f459 /ghc
parent460eebec65811c6a7bbe11645df322dda868e80d (diff)
downloadhaskell-b3e5a7b50428edc07d11ef4db316c20029f7a3df.tar.gz
Delete __GLASGOW_HASKELL__ ifdefs for stage0 < 7.6.
Summary: My understanding is that ghc 7.10 should be buildable with the last 3 versions of ghc, i.e 7.6, 7.8 and 7.10 itself. Test Plan: x Reviewers: austin Reviewed By: austin Subscribers: hvr, simonmar, ezyang, carter, thomie Differential Revision: https://phabricator.haskell.org/D254
Diffstat (limited to 'ghc')
-rw-r--r--ghc/hschooks.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ghc/hschooks.c b/ghc/hschooks.c
index 4c588d0ef7..67cdd57ab9 100644
--- a/ghc/hschooks.c
+++ b/ghc/hschooks.c
@@ -45,11 +45,7 @@ defaultsHook (void)
// See #3408: the default idle GC time of 0.3s is too short on
// Windows where we receive console events once per second or so.
-#if __GLASGOW_HASKELL__ >= 703
RtsFlags.GcFlags.idleGCDelayTime = SecondsToTime(5);
-#else
- RtsFlags.GcFlags.idleGCDelayTime = 5*1000;
-#endif
}
void