diff options
author | Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> | 2001-08-02 09:52:31 +0200 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2001-08-02 07:52:31 +0000 |
commit | eb77eeb3f409f10ac3dd09eb7a6e489b980c812a (patch) | |
tree | 1e1f67d9d17ab8dfbe2a37efbbcaf0bd9926cd27 /gcc | |
parent | a2db29a14008cb8936f4b3620dbc729769fc848e (diff) | |
download | gcc-eb77eeb3f409f10ac3dd09eb7a6e489b980c812a.zip gcc-eb77eeb3f409f10ac3dd09eb7a6e489b980c812a.tar.gz gcc-eb77eeb3f409f10ac3dd09eb7a6e489b980c812a.tar.bz2 |
params.def (PARAM_MAX_INLINE_INSNS): Change default to 600.
* params.def (PARAM_MAX_INLINE_INSNS): Change default to 600.
Correct comment that had been missed in the previous change.
From-SVN: r44566
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/params.def | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b0802cc..e4cdd33 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-01 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> + + * params.def (PARAM_MAX_INLINE_INSNS): Change default to 600. + Correct comment that had been missed in the previous change. + 2001-08-01 Stan Shebs <shebs@apple.com> * config/darwin.c (machopic_stub_name): Try matching by name. diff --git a/gcc/params.def b/gcc/params.def index ca952c1..e8809b6f 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -39,12 +39,12 @@ Boston, MA 02111-1307, USA. function. Increasing values mean more agressive inlining. This affects currently only functions explicitly marked as inline (or methods defined within the class definition for C++). - The default value of 10000 is arbitrary but high to match the - previously unlimited gcc capabilities. */ + The original default value of 10000 was arbitrary and caused + significant compile-time performance regressions. */ DEFPARAM (PARAM_MAX_INLINE_INSNS, "max-inline-insns", "The maximum number of instructions in a function that is eligible for inlining", - 100) + 600) /* The maximum number of instructions to consider when looking for an instruction to fill a delay slot. If more than this arbitrary |