* parms.def (MAX_INLINE_INSNS_SINGLE): Reduce from 400 to 200.
authorJan Hubicka <hubicka@ucw.cz>
Fri, 1 Feb 2019 10:46:36 +0000 (11:46 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Fri, 1 Feb 2019 10:46:36 +0000 (10:46 +0000)
From-SVN: r268448

gcc/ChangeLog
gcc/params.def

index 0da61908fee02feba34559dfc8ec6c517b30af6f..37ff9535acac9d689578c8fbd3860366e0703cd8 100644 (file)
@@ -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
index e5553af63c43faf508583e72e5257cfd65e5563b..f337d1eeb4c92c5b558143849384d50b93d40865 100644 (file)
@@ -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).