[commit: ghc] master: Bump specConstr threshold to match to 10x factor added to (80f5e70)
Simon Marlow
marlowsd at gmail.com
Thu May 26 12:38:53 CEST 2011
Repository : ssh://darcs.haskell.org//srv/darcs/ghc
On branch : master
http://hackage.haskell.org/trac/ghc/changeset/80f5e7009434750cee746bd89f7eea5f7c7fa3fd
>---------------------------------------------------------------
commit 80f5e7009434750cee746bd89f7eea5f7c7fa3fd
Author: Simon Marlow <marlowsd at gmail.com>
Date: Thu May 26 11:37:29 2011 +0100
Bump specConstr threshold to match to 10x factor added to
CoreUnfold.sizeExpr (oops, forgot to push this patch along with the
others yesterday, and this caused a few test failures overnight).
>---------------------------------------------------------------
compiler/main/DynFlags.hs | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs
index 01e0cf8..6804c03 100644
--- a/compiler/main/DynFlags.hs
+++ b/compiler/main/DynFlags.hs
@@ -762,9 +762,9 @@ defaultDynFlags mySettings =
maxSimplIterations = 4,
shouldDumpSimplPhase = Nothing,
ruleCheck = Nothing,
- specConstrThreshold = Just 200,
+ specConstrThreshold = Just 2000,
specConstrCount = Just 3,
- liberateCaseThreshold = Just 200,
+ liberateCaseThreshold = Just 2000,
floatLamArgs = Just 0, -- Default: float only if no fvs
strictnessBefore = [],
More information about the Cvs-ghc
mailing list