From b3e5a7b50428edc07d11ef4db316c20029f7a3df Mon Sep 17 00:00:00 2001 From: Thomas Miedema Date: Tue, 7 Oct 2014 08:48:06 -0500 Subject: 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 --- testsuite/tests/rts/testblockalloc.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'testsuite/tests/rts/testblockalloc.c') diff --git a/testsuite/tests/rts/testblockalloc.c b/testsuite/tests/rts/testblockalloc.c index 7fd14b6b18..b49ae00bac 100644 --- a/testsuite/tests/rts/testblockalloc.c +++ b/testsuite/tests/rts/testblockalloc.c @@ -21,15 +21,11 @@ int main (int argc, char *argv[]) srand(SEED); -#if __GLASGOW_HASKELL__ >= 703 { RtsConfig conf = defaultRtsConfig; conf.rts_opts_enabled = RtsOptsAll; hs_init_ghc(&argc, &argv, conf); } -#else - hs_init(&argc, &argv); -#endif // repeatedly sweep though the array, allocating new random-sized // objects and deallocating the old ones. -- cgit v1.2.1