Commit 93ee12c4 by Gerald Pfeifer Committed by Gerald Pfeifer

invoke.texi (Optimize Options): The default for -finline-limit is 600.

	* doc/invoke.texi (Optimize Options): The default for
	-finline-limit is 600.

From-SVN: r44975
parent 33c09f2f
2001-08-17 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* doc/invoke.texi (Optimize Options): The default for
-finline-limit is 600.
2001-08-17 Richard Henderson <rth@redhat.com>
* varasm.c (text_section): Allow TEXT_SECTION to override the
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment