diff options
author | Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> | 2001-08-17 21:15:47 +0200 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2001-08-17 19:15:47 +0000 |
commit | 93ee12c4cf57d66c4e2e30dabc01783366c0134f (patch) | |
tree | 3c56044cec2269f0fd2d18ecb7524f3f2cd1bcdd | |
parent | 33c09f2f10a51cdd8bd02e2b0be89d3540c5dcf3 (diff) | |
download | gcc-93ee12c4cf57d66c4e2e30dabc01783366c0134f.zip gcc-93ee12c4cf57d66c4e2e30dabc01783366c0134f.tar.gz gcc-93ee12c4cf57d66c4e2e30dabc01783366c0134f.tar.bz2 |
invoke.texi (Optimize Options): The default for -finline-limit is 600.
* doc/invoke.texi (Optimize Options): The default for
-finline-limit is 600.
From-SVN: r44975
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b7e6e7f..586dc5f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-17 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> + + * doc/invoke.texi (Optimize Options): The default for + -finline-limit is 600. + 2001-08-17 Richard Henderson <rth@redhat.com> * varasm.c (text_section): Allow TEXT_SECTION to override the diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 4ae2fc3..d0969d3 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -3310,7 +3310,8 @@ allows the control of this limit for functions that are explicitly marked as inline (ie marked with the inline keyword or defined within the class definition in c++). @var{n} is the size of functions that can be inlined in number of pseudo instructions (not counting parameter handling). The default -value of @var{n} is 10000. Increasing this value can result in more inlined code at +value of @var{n} is 600. +Increasing this value can result in more inlined code at the cost of compilation time and memory consumption. Decreasing usually makes the compilation faster and less code will be inlined (which presumably means slower programs). This option is particularly useful for programs that |