Commit eb77eeb3 by Gerald Pfeifer Committed by Gerald Pfeifer

params.def (PARAM_MAX_INLINE_INSNS): Change default to 600.

	* params.def (PARAM_MAX_INLINE_INSNS): Change default to 600.
	Correct comment that had been missed in the previous change.

From-SVN: r44566
parent a2db29a1
2001-08-01 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* params.def (PARAM_MAX_INLINE_INSNS): Change default to 600.
Correct comment that had been missed in the previous change.
2001-08-01 Stan Shebs <shebs@apple.com> 2001-08-01 Stan Shebs <shebs@apple.com>
* config/darwin.c (machopic_stub_name): Try matching by name. * config/darwin.c (machopic_stub_name): Try matching by name.
......
...@@ -39,12 +39,12 @@ Boston, MA 02111-1307, USA. ...@@ -39,12 +39,12 @@ Boston, MA 02111-1307, USA.
function. Increasing values mean more agressive inlining. function. Increasing values mean more agressive inlining.
This affects currently only functions explicitly marked as This affects currently only functions explicitly marked as
inline (or methods defined within the class definition for C++). inline (or methods defined within the class definition for C++).
The default value of 10000 is arbitrary but high to match the The original default value of 10000 was arbitrary and caused
previously unlimited gcc capabilities. */ significant compile-time performance regressions. */
DEFPARAM (PARAM_MAX_INLINE_INSNS, DEFPARAM (PARAM_MAX_INLINE_INSNS,
"max-inline-insns", "max-inline-insns",
"The maximum number of instructions in a function that is eligible for inlining", "The maximum number of instructions in a function that is eligible for inlining",
100) 600)
/* The maximum number of instructions to consider when looking for an /* The maximum number of instructions to consider when looking for an
instruction to fill a delay slot. If more than this arbitrary instruction to fill a delay slot. If more than this arbitrary
......
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