s390.c (override_options): Increase the default of max-completely-peel-times.

2010-05-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

	* config/s390/s390.c (override_options): Increase the default
	of max-completely-peel-times.

From-SVN: r159674
This commit is contained in:
Andreas Krebbel 2010-05-21 15:42:33 +00:00 committed by Andreas Krebbel
parent 53c9df5add
commit 9e3b02e14d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-05-21 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* config/s390/s390.c (override_options): Increase the default
of max-completely-peel-times.
2010-05-21 Richard Guenther <rguenther@suse.de>
PR tree-optimization/43845

View File

@ -1657,7 +1657,7 @@ override_options (void)
if (!PARAM_SET_P (PARAM_MAX_UNROLL_TIMES))
set_param_value ("max-unroll-times", 32);
if (!PARAM_SET_P (PARAM_MAX_COMPLETELY_PEELED_INSNS))
set_param_value ("max-completely-peeled-insns", 800);
set_param_value ("max-completely-peeled-insns", 2000);
if (!PARAM_SET_P (PARAM_MAX_COMPLETELY_PEEL_TIMES))
set_param_value ("max-completely-peel-times", 64);
}