diff options
author | yroux <yroux@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-12-04 17:33:17 +0000 |
---|---|---|
committer | yroux <yroux@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-12-04 17:33:17 +0000 |
commit | eaff1ee74b13391cc8e8d71d63729a4976596f07 (patch) | |
tree | ef564afdff4c748ce1436aeb19712b4cefbf6ed4 | |
parent | 46e0d0492f72909f1be175978a9150c7e71f6c1f (diff) | |
download | linaro-gcc-eaff1ee74b13391cc8e8d71d63729a4976596f07.tar.gz linaro-gcc-eaff1ee74b13391cc8e8d71d63729a4976596f07.tar.bz2 linaro-gcc-eaff1ee74b13391cc8e8d71d63729a4976596f07.zip |
2014-12-04 Yvan Roux <yvan.roux@linaro.org>
Backport from trunk r217971.
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/linaro/gcc-4_9-branch@218383 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog.linaro | 9 | ||||
-rw-r--r-- | gcc/params.def | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/gcc/ChangeLog.linaro b/gcc/ChangeLog.linaro index bcc86329084..ef731d02855 100644 --- a/gcc/ChangeLog.linaro +++ b/gcc/ChangeLog.linaro @@ -1,5 +1,14 @@ 2014-12-04 Yvan Roux <yvan.roux@linaro.org> + Backport from trunk r217971. + 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-12-04 Yvan Roux <yvan.roux@linaro.org> + Backport from trunk r216524. 2014-10-21 Andrew Pinski <apinski@cavium.com> diff --git a/gcc/params.def b/gcc/params.def index c656eaff0cf..f1e82bb23d0 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", |