diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2014-11-22 20:02:12 +0100 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2014-11-22 20:02:12 +0100 |
commit | c1b4f9c6ecf054ce3a2aa3c9e3c1f4fdfd8f10fd (patch) | |
tree | 03ff7c89c1599472c2bd054dd9f07290a3a3469d | |
parent | 10f916167ccf8451fb717689eef61d3895c1f2a2 (diff) | |
download | gcc-c1b4f9c6ecf054ce3a2aa3c9e3c1f4fdfd8f10fd.zip gcc-c1b4f9c6ecf054ce3a2aa3c9e3c1f4fdfd8f10fd.tar.gz gcc-c1b4f9c6ecf054ce3a2aa3c9e3c1f4fdfd8f10fd.tar.bz2 |
params.def (PARAM_MAX_COMPLETELY_PEELED_INSNS): Increase to 200.
* params.def (PARAM_MAX_COMPLETELY_PEELED_INSNS): Increase to 200.
* config/i386/i386.c (ix86_option_override_internal): Do not increase
PARAM_MAX_COMPLETELY_PEELED_INSNS.
From-SVN: r217971
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 6 | ||||
-rw-r--r-- | gcc/params.def | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cd28dc4..6c15bce 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2014-11-22 Uros Bizjak <ubizjak@gmail.com> + + * params.def (PARAM_MAX_COMPLETELY_PEELED_INSNS): Increase to 200. + * config/i386/i386.c (ix86_option_override_internal): Do not increase + PARAM_MAX_COMPLETELY_PEELED_INSNS. + 2014-11-22 Oleg Endo <olegendo@gcc.gnu.org> PR target/63783 diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index e634af2..eafc15a 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -4142,12 +4142,6 @@ ix86_option_override_internal (bool main_args_p, opts->x_param_values, opts_set->x_param_values); - /* Increase full peel max insns parameter for x86. */ - maybe_set_param_value (PARAM_MAX_COMPLETELY_PEELED_INSNS, - 200, - opts->x_param_values, - opts_set->x_param_values); - /* Enable sw prefetching at -O3 for CPUS that prefetching is helpful. */ if (opts->x_flag_prefetch_loop_arrays < 0 && HAVE_prefetch diff --git a/gcc/params.def b/gcc/params.def index 6c71326..9b21c07 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -303,7 +303,7 @@ DEFPARAM(PARAM_MAX_PEEL_BRANCHES, DEFPARAM(PARAM_MAX_COMPLETELY_PEELED_INSNS, "max-completely-peeled-insns", "The maximum number of insns of a completely peeled loop", - 100, 0, 0) + 200, 0, 0) /* The maximum number of peelings of a single loop that is peeled completely. */ DEFPARAM(PARAM_MAX_COMPLETELY_PEEL_TIMES, "max-completely-peel-times", |