From 61b596d69556c8458efd86cf1c0c94f036589e3d Mon Sep 17 00:00:00 2001 From: sof Date: Wed, 1 Oct 2003 17:01:28 +0000 Subject: [PATCH] [project @ 2003-10-01 17:01:28 by sof] enableTimingStats(): bring back -Rghc-timing output when compiled with >= 4.11 (was >= 5.05, which looks unnecessarily restrictive.) --- ghc/compiler/parser/hschooks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/compiler/parser/hschooks.c b/ghc/compiler/parser/hschooks.c index ee43bf7..345c0b5 100644 --- a/ghc/compiler/parser/hschooks.c +++ b/ghc/compiler/parser/hschooks.c @@ -41,7 +41,7 @@ defaultsHook (void) void enableTimingStats( void ) /* called from the driver */ { -#if __GLASGOW_HASKELL__ >= 505 +#if __GLASGOW_HASKELL__ >= 411 RtsFlags.GcFlags.giveStats = ONELINE_GC_STATS; #endif /* ignored when bootstrapping with an older GHC */ -- 1.7.10.4