diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/params.def | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0da6190..37ff953 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +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 diff --git a/gcc/params.def b/gcc/params.def index e5553af..f337d1e 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -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). |