diff options
author | Richard Guenther <rguenther@suse.de> | 2011-03-11 16:07:07 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2011-03-11 16:07:07 +0000 |
commit | 03dfda54535c36cef955c0d06d46b82e2356574c (patch) | |
tree | 1c90495dea91720f63841284f860f6361f8a39b4 | |
parent | 5f11a50a53603f4888a981e4bc162ef9069bbcd8 (diff) | |
download | gcc-03dfda54535c36cef955c0d06d46b82e2356574c.zip gcc-03dfda54535c36cef955c0d06d46b82e2356574c.tar.gz gcc-03dfda54535c36cef955c0d06d46b82e2356574c.tar.bz2 |
invoke.texi (max-inline-insns-single): Adjust default value.
2011-03-11 Richard Guenther <rguenther@suse.de>
* doc/invoke.texi (max-inline-insns-single): Adjust default value.
From-SVN: r170876
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dea9da9..8a5ca08 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2011-03-11 Richard Guenther <rguenther@suse.de> + * doc/invoke.texi (max-inline-insns-single): Adjust default value. + +2011-03-11 Richard Guenther <rguenther@suse.de> + PR lto/48073 * tree.c (find_decls_types_r): Do not walk types only reachable from IDENTIFIER_NODEs. diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index a4d55a1..6998068 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -8301,7 +8301,7 @@ This number sets the maximum number of instructions (counted in GCC's internal representation) in a single function that the tree inliner will consider for inlining. This only affects functions declared inline and methods implemented in a class declaration (C++). -The default value is 300. +The default value is 400. @item max-inline-insns-auto When you use @option{-finline-functions} (included in @option{-O3}), |