From: sewardj Date: Wed, 15 Aug 2001 09:58:00 +0000 (+0000) Subject: [project @ 2001-08-15 09:58:00 by sewardj] X-Git-Tag: Approximately_9120_patches~1240 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=7d7df883026588cbcd40c57319d6cc268810408d;p=ghc-hetmet.git [project @ 2001-08-15 09:58:00 by sewardj] Reverse the effects of rev 1.54 (which accidentally disabled the strictness analyser.) --- diff --git a/ghc/compiler/main/DriverState.hs b/ghc/compiler/main/DriverState.hs index e45dcd0..8dae078 100644 --- a/ghc/compiler/main/DriverState.hs +++ b/ghc/compiler/main/DriverState.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- $Id: DriverState.hs,v 1.54 2001/08/14 13:40:08 sewardj Exp $ +-- $Id: DriverState.hs,v 1.55 2001/08/15 09:58:00 sewardj Exp $ -- -- Settings for the driver -- @@ -146,7 +146,7 @@ GLOBAL_VAR(v_minus_o2_for_C, False, Bool) GLOBAL_VAR(v_MaxSimplifierIterations, 4, Int) GLOBAL_VAR(v_StgStats, False, Bool) GLOBAL_VAR(v_UsageSPInf, False, Bool) -- Off by default -GLOBAL_VAR(v_Strictness, False{-True-}, Bool) +GLOBAL_VAR(v_Strictness, True, Bool) GLOBAL_VAR(v_CPR, True, Bool) GLOBAL_VAR(v_CSE, True, Bool)