From 3b123595194847e323c1312c502266caf61d67f7 Mon Sep 17 00:00:00 2001 From: Simon Baldwin Date: Tue, 13 Apr 2010 08:58:15 +0000 Subject: cfgexpand.c (gimple_expand_cfg): Clarify warning message text. * cfgexpand.c (gimple_expand_cfg): Clarify warning message text. From-SVN: r158256 --- gcc/cfgexpand.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gcc/cfgexpand.c') diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 7bc6609..454f61a 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -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)); } -- cgit v1.1