public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/46476] New: Missing Warning about unreachable code after return
@ 2010-11-14 17:13 paolo.carlini at oracle dot com
  2010-11-14 17:44 ` [Bug c++/46476] " rguenth at gcc dot gnu.org
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: paolo.carlini at oracle dot com @ 2010-11-14 17:13 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46476

           Summary: Missing Warning about unreachable code after return
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: paolo.carlini@oracle.com


It seems impossible to me that this issue has not been discussed already, but
in the library I fixed only two weeks ago a *very* stupid bug which went
unnoticed for *many* months exactly because of this. Couldn't believe that GCC
didn't warn even at -Wall -Wextra (and -O2). Thus:

int foo(int& num)
{
  return num;
  ++num;      // Warn!
}

int bar(int num)
{
  return num;
  ++num;      // Warn!
  return num;
}

For the record, ICC *does* warn, with -Wall.


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2022-07-27 16:58 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-14 17:13 [Bug c++/46476] New: Missing Warning about unreachable code after return paolo.carlini at oracle dot com
2010-11-14 17:44 ` [Bug c++/46476] " rguenth at gcc dot gnu.org
2012-05-12 14:05 ` manu at gcc dot gnu.org
2014-02-25  9:10 ` stefan at schweter dot it
2021-10-26 12:48 ` [Bug c++/46476] Missing Warning about unreachable code after return [-Wunreachable-code-return] rguenth at gcc dot gnu.org
2021-11-24 15:23 ` rguenth at gcc dot gnu.org
2021-11-25 12:06 ` tschwinge at gcc dot gnu.org
2021-11-26  8:45 ` rguenth at gcc dot gnu.org
2021-11-26  8:45 ` rguenth at gcc dot gnu.org
2021-11-26  8:47 ` rguenth at gcc dot gnu.org
2021-11-26  8:50 ` rguenth at gcc dot gnu.org
2021-11-26  9:48 ` tschwinge at gcc dot gnu.org
2021-11-26 10:04 ` rguenth at gcc dot gnu.org
2021-11-26 10:13 ` rguenth at gcc dot gnu.org
2021-11-26 12:05 ` rguenth at gcc dot gnu.org
2021-11-29  7:21 ` rguenth at gcc dot gnu.org
2021-11-29 13:30 ` rguenth at gcc dot gnu.org
2021-11-29 14:29 ` rguenth at gcc dot gnu.org
2022-07-27 16:58 ` pinskia at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).