Commit 61a8637c by Jan Hubicka Committed by Jan Hubicka

* parms.def (MAX_INLINE_INSNS_SINGLE): Reduce from 400 to 200.

From-SVN: r268448
parent 3c54b7d6
2019-02-01 Jan Hubicka <hubicka@ucw.cz>
* parms.def (MAX_INLINE_INSNS_SINGLE): Reduce from 400 to 200.
2019-02-01 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/89143
......
......@@ -58,7 +58,6 @@ DEFPARAM (PARAM_INLINE_MIN_SPEEDUP,
of a function counted in internal gcc instructions (not in
real machine instructions) that is eligible for inlining
by the tree inliner.
The default value is 400.
Only functions marked inline (or methods defined in the class
definition for C++) are affected by this.
There are more restrictions to inlining: If inlined functions
......@@ -69,7 +68,7 @@ DEFPARAM (PARAM_INLINE_MIN_SPEEDUP,
DEFPARAM (PARAM_MAX_INLINE_INSNS_SINGLE,
"max-inline-insns-single",
"The maximum number of instructions in a single function eligible for inlining.",
400, 0, 0)
200, 0, 0)
/* The single function inlining limit for functions that are
inlined by virtue of -finline-functions (-O3).
......
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