Commit c1a3620a by Seongbae Park Committed by Seongbae Park

common.opt (Wframe-larger-than=): Shorten the help message to one line.

2008-05-08  Seongbae Park  <seongbae.park@gmail.com>
	* common.opt (Wframe-larger-than=): Shorten the help message
	to one line.
	* doc/invoke.texi (Wframe-larger-than=): Add more description.

From-SVN: r135097
parent 04b03edb
2008-05-08 Seongbae Park <seongbae.park@gmail.com>
* common.opt (Wframe-larger-than=): Shorten the help message
to one line.
* doc/invoke.texi (Wframe-larger-than=): Add more description.
2008-05-08 Rafael Espindola <espindola@google.com> 2008-05-08 Rafael Espindola <espindola@google.com>
* tree-complex.c (expand_complex_div_wide): Don't create CONDs that * tree-complex.c (expand_complex_div_wide): Don't create CONDs that
......
...@@ -112,14 +112,7 @@ Exit on the first error occurred ...@@ -112,14 +112,7 @@ Exit on the first error occurred
Wframe-larger-than= Wframe-larger-than=
Common RejectNegative Joined UInteger Common RejectNegative Joined UInteger
-Wframe-larger-than=@var{len} Warn whenever a function's stack frame requires -Wframe-larger-than=<number> Warn if a function's stack frame requires more than <number> bytes
more than @var{len} bytes. The computation done to determine
the stack frame size is approximate and not conservative.
The actual requirements may be somewhat greater than @var{len}
even if you do not get a warning. In addition, any space allocated
via @code{alloca}, variable-length arrays, or related constructs
is not included by the compiler when determining
whether or not to issue a warning.
Winline Winline
Common Var(warn_inline) Warning Common Var(warn_inline) Warning
......
...@@ -3552,7 +3552,14 @@ Warn whenever an object of larger than @var{len} bytes is defined. ...@@ -3552,7 +3552,14 @@ Warn whenever an object of larger than @var{len} bytes is defined.
@item -Wframe-larger-than=@var{len} @item -Wframe-larger-than=@var{len}
@opindex Wframe-larger-than @opindex Wframe-larger-than
Warn whenever the size of a function frame is larger than @var{len} bytes. Warn if the size of a function frame is larger than @var{len} bytes.
The computation done to determine the stack frame size is approximate
and not conservative.
The actual requirements may be somewhat greater than @var{len}
even if you do not get a warning. In addition, any space allocated
via @code{alloca}, variable-length arrays, or related constructs
is not included by the compiler when determining
whether or not to issue a warning.
@item -Wunsafe-loop-optimizations @item -Wunsafe-loop-optimizations
@opindex Wunsafe-loop-optimizations @opindex Wunsafe-loop-optimizations
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment