diff options
author | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-02 07:52:31 +0000 |
---|---|---|
committer | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-02 07:52:31 +0000 |
commit | b41b02594c20edfc6d4322122eaf4614d86f8fe9 (patch) | |
tree | 1e1f67d9d17ab8dfbe2a37efbbcaf0bd9926cd27 /gcc/params.def | |
parent | db602afc4e3d1baf32f2412ece937cc4222c8c03 (diff) | |
download | gcc-b41b02594c20edfc6d4322122eaf4614d86f8fe9.tar.gz |
* params.def (PARAM_MAX_INLINE_INSNS): Change default to 600.
Correct comment that had been missed in the previous change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44566 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/params.def')
-rw-r--r-- | gcc/params.def | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/params.def b/gcc/params.def index ca952c1b356..e8809b6f0bd 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 |