diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-28 00:31:05 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-28 00:31:05 +0000 |
commit | f925fe89b22d5cd843f3d8f2e2c4dc68bdb8262c (patch) | |
tree | 01459d8e59a7d1ed636940db0f2627e86ac19141 /gcc/params.def | |
parent | e103d9ea4841f5c31d3157cb627472313a26f4e4 (diff) | |
download | gcc-f925fe89b22d5cd843f3d8f2e2c4dc68bdb8262c.tar.gz |
* params.def (max-inline-insns-auto): Default to 40.
* doc/invoke.texi (max-inline-insns-auto): Document the change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161481 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/params.def')
-rw-r--r-- | gcc/params.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/params.def b/gcc/params.def index d4321e4267d..767ecd9e512 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -78,11 +78,11 @@ DEFPARAM (PARAM_MAX_INLINE_INSNS_SINGLE, that is applied to functions marked inlined (or defined in the class declaration in C++) given by the "max-inline-insns-single" parameter. - The default value is 90. */ + The default value is 40. */ DEFPARAM (PARAM_MAX_INLINE_INSNS_AUTO, "max-inline-insns-auto", "The maximum number of instructions when automatically inlining", - 50, 0, 0) + 40, 0, 0) DEFPARAM (PARAM_MAX_INLINE_INSNS_RECURSIVE, "max-inline-insns-recursive", |