aboutsummaryrefslogtreecommitdiff
path: root/gcc/params.def
diff options
context:
space:
mode:
authorJan Hubicka <hubicka@ucw.cz>2019-02-01 11:46:36 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2019-02-01 10:46:36 +0000
commit61a8637c8893a25282e844ec217c31df8ad3b6e9 (patch)
treefe2002f0fdf427acfdd0fac1e375fa53162c1955 /gcc/params.def
parent3c54b7d606f5c09a691d7a3d8f77d0f86910c67c (diff)
downloadgcc-61a8637c8893a25282e844ec217c31df8ad3b6e9.zip
gcc-61a8637c8893a25282e844ec217c31df8ad3b6e9.tar.gz
gcc-61a8637c8893a25282e844ec217c31df8ad3b6e9.tar.bz2
* parms.def (MAX_INLINE_INSNS_SINGLE): Reduce from 400 to 200.
From-SVN: r268448
Diffstat (limited to 'gcc/params.def')
-rw-r--r--gcc/params.def3
1 files changed, 1 insertions, 2 deletions
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).