diff mbox

[committed] Make Wmissing-noreturn an alias of -Wsuggest-attribute=noreturn.

Message ID CAESRpQDHYY9m6PGt91X4S2E176yjcZbq60pce4O2rEMF1U-0-Q@mail.gmail.com
State New
Headers show

Commit Message

Manuel López-Ibáñez April 29, 2012, 9:16 a.m. UTC
Bootstrapped and regression tested. Committed as obvious at revision 186943.
diff mbox

Patch

Index: gcc/ChangeLog
===================================================================
--- gcc/ChangeLog       (revision 186942)
+++ gcc/ChangeLog       (working copy)
@@ -1,3 +1,8 @@ 
+2012-04-29  Manuel López-Ibáñez  <manu@gcc.gnu.org>
+
+        * opts.c (finish_options): Do not handle -Wmissing-noreturn
here.
+        * common.opt (Wmissing-noreturn): Alias of
-Wsuggest-attribute=noreturn.
+
 2012-04-29  Hans-Peter Nilsson  <hp@axis.com>

        PR target/53156
Index: gcc/opts.c
===================================================================
--- gcc/opts.c  (revision 186942)
+++ gcc/opts.c  (working copy)
@@ -667,10 +667,6 @@ 
   if (opts->x_flag_tm && opts->x_flag_non_call_exceptions)
     sorry ("transactional memory is not supported with non-call exceptions");

-  /* -Wmissing-noreturn is alias for -Wsuggest-attribute=noreturn.  */
-  if (opts->x_warn_missing_noreturn)
-    opts->x_warn_suggest_attribute_noreturn = true;
-
   /* Unless the user has asked for section anchors, we disable toplevel
      reordering at -O0 to disable transformations that might be surprising
      to end users and to get -fno-toplevel-reorder tested.  */
Index: gcc/common.opt
===================================================================
--- gcc/common.opt      (revision 186942)
+++ gcc/common.opt      (working copy)
@@ -567,8 +567,7 @@ 
 Warn if the loop cannot be optimized due to nontrivial assumptions.

 Wmissing-noreturn
-Common Var(warn_missing_noreturn) Warning
-Warn about functions which might be candidates for __attribute__((noreturn))
+Common Alias(Wsuggest-attribute=noreturn)

 Woverflow
 Common Var(warn_overflow) Init(1) Warning