From 61a8637c8893a25282e844ec217c31df8ad3b6e9 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Fri, 1 Feb 2019 11:46:36 +0100 Subject: [PATCH] * parms.def (MAX_INLINE_INSNS_SINGLE): Reduce from 400 to 200. From-SVN: r268448 --- gcc/ChangeLog | 4 ++++ gcc/params.def | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0da61908fee..37ff9535aca 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2019-02-01 Jan Hubicka + + * parms.def (MAX_INLINE_INSNS_SINGLE): Reduce from 400 to 200. + 2019-02-01 Jakub Jelinek PR tree-optimization/89143 diff --git a/gcc/params.def b/gcc/params.def index e5553af63c4..f337d1eeb4c 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). -- 2.30.2