cfgexpand.c (gimple_expand_cfg): Clarify warning message text.

* cfgexpand.c (gimple_expand_cfg): Clarify warning message text.

From-SVN: r158256
This commit is contained in:
Simon Baldwin 2010-04-13 08:58:15 +00:00 committed by Simon Baldwin
parent 76af763dfe
commit 3b12359519
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2010-04-13 Simon Baldwin <simonb@google.com>
* cfgexpand.c (gimple_expand_cfg): Clarify warning message text.
2010-04-13 Eric Botcazou <ebotcazou@adacore.com>
* gimple.c (walk_gimple_op) <GIMPLE_ASSIGN>: Do not request a pure

View File

@ -3764,10 +3764,12 @@ gimple_expand_cfg (void)
{
if (cfun->calls_alloca)
warning (OPT_Wstack_protector,
"not protecting local variables: variable length buffer");
"stack protector not protecting local variables: "
"variable length buffer");
if (has_short_buffer && !crtl->stack_protect_guard)
warning (OPT_Wstack_protector,
"not protecting function: no buffer at least %d bytes long",
"stack protector not protecting function: "
"all local arrays are less than %d bytes long",
(int) PARAM_VALUE (PARAM_SSP_BUFFER_SIZE));
}