public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* patch that caused regression PR c/8828
@ 2002-12-24 18:55 Janis Johnson
  0 siblings, 0 replies; only message in thread
From: Janis Johnson @ 2002-12-24 18:55 UTC (permalink / raw)
  To: gcc, jakub

The regression reported in PR c/8828 showed up starting
with this patch:

2002-02-12  Jakub Jelinek  <jakub@redhat.com>

	* jump.c (never_reached_warning): Add finish argument.
	If finish is NULL, stop on CODE_LABEL, otherwise stop before first
	real insn after end.
	* rtl.h (never_reached_warning): Adjust prototype.
	* cse.c (cse_insn): Pass NULL as finish to never_reached_warning.
	* cfgrtl.c (flow_delete_block): Pass b->end as finish to
	never_reached_warning.

Here's a small test case that causes the compiler to issue
warnings when compiled on i686-linux with -Wunreachable-code:

-------------------
/* incorrect(?) warnings with -Wunreachable-code */

void foo(int i) {
  switch (i)    {
    case 0:         break;
    case 1:         break;
  };
};
-------------------

Output from mainline gcc:

8828.c: In function `foo':
8828.c:6: warning: will never be executed
8828.c:5: warning: will never be executed

I've added this information to the PR.

Janis

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-12-24 20:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-12-24 18:55 patch that caused regression PR c/8828 Janis Johnson

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).