diff options
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/function.c b/gcc/function.c index 2b551e4..065c124 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -3850,9 +3850,8 @@ init_function_start (tree subr) /* Warn if this value is an aggregate type, regardless of which calling convention we are using for it. */ - if (warn_aggregate_return - && AGGREGATE_TYPE_P (TREE_TYPE (DECL_RESULT (subr)))) - warning (0, "function returns an aggregate"); + if (AGGREGATE_TYPE_P (TREE_TYPE (DECL_RESULT (subr)))) + warning (OPT_Waggregate_return, "function returns an aggregate"); } /* Make sure all values used by the optimization passes have sane |