From: gerald Date: Fri, 17 Aug 2001 19:15:47 +0000 (+0000) Subject: * doc/invoke.texi (Optimize Options): The default for X-Git-Url: http://git.sourceforge.jp/view?a=commitdiff_plain;h=3ca183b082fba556fc8f283f2609853932d3abcf;p=pf3gnuchains%2Fgcc-fork.git * doc/invoke.texi (Optimize Options): The default for -finline-limit is 600. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44975 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b7e6e7f7e76..586dc5f35b8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-17 Gerald Pfeifer + + * doc/invoke.texi (Optimize Options): The default for + -finline-limit is 600. + 2001-08-17 Richard Henderson * varasm.c (text_section): Allow TEXT_SECTION to override the diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 4ae2fc3653e..d0969d32c09 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -3310,7 +3310,8 @@ allows the control of this limit for functions that are explicitly marked as inline (ie marked with the inline keyword or defined within the class definition in c++). @var{n} is the size of functions that can be inlined in number of pseudo instructions (not counting parameter handling). The default -value of @var{n} is 10000. Increasing this value can result in more inlined code at +value of @var{n} is 600. +Increasing this value can result in more inlined code at the cost of compilation time and memory consumption. Decreasing usually makes the compilation faster and less code will be inlined (which presumably means slower programs). This option is particularly useful for programs that