diff options
author | Jan Hubicka <jh@suse.cz> | 2009-09-15 22:07:25 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2009-09-15 20:07:25 +0000 |
commit | c7d68c96b4b27b46e26414dc0f47cde3be7d0a71 (patch) | |
tree | af2067f0ce6096f86daf911cea32bc51d0f633e3 | |
parent | 5cbf8c8d0b15e9971e6a054bd4e9ba39e37f6636 (diff) | |
download | gcc-c7d68c96b4b27b46e26414dc0f47cde3be7d0a71.zip gcc-c7d68c96b4b27b46e26414dc0f47cde3be7d0a71.tar.gz gcc-c7d68c96b4b27b46e26414dc0f47cde3be7d0a71.tar.bz2 |
invoke.texi (inline-insns-auto): Drop from 60 to 50.
* doc/invoke.texi (inline-insns-auto): Drop from 60 to 50.
* params.def (inline-insns-auto): Likewise.
From-SVN: r151728
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 2 | ||||
-rw-r--r-- | gcc/params.def | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c8fb1e7..b8534f8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-09-15 Jan Hubicka <jh@suse.cz> + + * doc/invoke.texi (inline-insns-auto): Drop from 60 to 50. + * params.def (inline-insns-auto): Likewise. + 2009-09-15 Martin Jambor <mjambor@suse.cz> * ipa-inline.c (estimate_function_body_sizes): Dump info about diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 8efaf3b..4adc114 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -7634,7 +7634,7 @@ a lot of functions that would otherwise not be considered for inlining by the compiler will be investigated. To those functions, a different (more restrictive) limit compared to functions declared inline can be applied. -The default value is 60. +The default value is 50. @item large-function-insns The limit specifying really large functions. For functions larger than this diff --git a/gcc/params.def b/gcc/params.def index 6099d9f..488a0d3 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -82,7 +82,7 @@ DEFPARAM (PARAM_MAX_INLINE_INSNS_SINGLE, DEFPARAM (PARAM_MAX_INLINE_INSNS_AUTO, "max-inline-insns-auto", "The maximum number of instructions when automatically inlining", - 60, 0, 0) + 50, 0, 0) DEFPARAM (PARAM_MAX_INLINE_INSNS_RECURSIVE, "max-inline-insns-recursive", |