public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: middle-end/10336: [3.3/3.4 regression] ICE with -Wunreachable-code
@ 2003-04-29 18:46 Wolfgang Bangerth
  0 siblings, 0 replies; 5+ messages in thread
From: Wolfgang Bangerth @ 2003-04-29 18:46 UTC (permalink / raw)
  To: jason; +Cc: gcc-prs

The following reply was made to PR middle-end/10336; it has been noted by GNATS.

From: Wolfgang Bangerth <bangerth@ices.utexas.edu>
To: Giovanni Bajo <giovannibajo@libero.it>
Cc: s.bosscher@student.tudelft.nl, <gcc-gnats@gcc.gnu.org>,
   Jason Merrill <jason@redhat.com>, <mark@codesourcery.com>
Subject: Re: middle-end/10336: [3.3/3.4 regression] ICE with -Wunreachable-code
Date: Tue, 29 Apr 2003 13:44:09 -0500 (CDT)

 > Ah, sorry. Confirmed with 3.3/3.4 (C frontend) and 3.4 only (C++ frontend).
 > I think the synopsis should be changed to report the 3.3 regression.
 
 OK, I did that.
 
 Mark, can you add this to your watch-list? My gut tells me that we will 
 get _lots_ of PRs from this one otherwise. Jason's got a tentative patch, 
 so we might have a resolution there soon.
 
 Jason, can you make sure this goes into 3.3 as well if the patch works 
 and Mark agrees?
 
 W.
 
 -------------------------------------------------------------------------
 Wolfgang Bangerth              email:            bangerth@ices.utexas.edu
                                www: http://www.ices.utexas.edu/~bangerth/
 
 
 


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

* Re: middle-end/10336: [3.3/3.4 regression] ICE with -Wunreachable-code
@ 2003-04-30 17:42 jason
  0 siblings, 0 replies; 5+ messages in thread
From: jason @ 2003-04-30 17:42 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, jason, reichelt

Synopsis: [3.3/3.4 regression] ICE with -Wunreachable-code

State-Changed-From-To: analyzed->closed
State-Changed-By: jason
State-Changed-When: Wed Apr 30 17:42:50 2003
State-Changed-Why:
    fixed

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=10336


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

* Re: middle-end/10336: [3.3/3.4 regression] ICE with -Wunreachable-code
@ 2003-04-15  6:36 Steven Bosscher
  0 siblings, 0 replies; 5+ messages in thread
From: Steven Bosscher @ 2003-04-15  6:36 UTC (permalink / raw)
  To: jason; +Cc: gcc-prs

The following reply was made to PR middle-end/10336; it has been noted by GNATS.

From: Steven Bosscher <s.bosscher@student.tudelft.nl>
To: Jason Merrill <jason@redhat.com>
Cc: steven@gcc.gnu.org, gcc-bugs@gcc.gnu.org, gcc-prs@gcc.gnu.org,
	nobody@gcc.gnu.org, reichelt@igpm.rwth-aachen.de,
	gcc-gnats@gcc.gnu.org
Subject: Re: middle-end/10336: [3.3/3.4 regression] ICE with
	-Wunreachable-code
Date: 15 Apr 2003 08:32:52 +0200

 Op di 15-04-2003, om 05:28 schreef Jason Merrill:
 > Thanks, I'm testing this patch now.  Yours leaves insn null for testcases
 > that were crashing, so we wouldn't ever warn.
 > 
 
 Yea, I had a feeling you had someting else in mind.
 
 Thanks for the fix!
 
 Greetz
 Steven
 
 


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

* Re: middle-end/10336: [3.3/3.4 regression] ICE with -Wunreachable-code
@ 2003-04-15  3:36 Jason Merrill
  0 siblings, 0 replies; 5+ messages in thread
From: Jason Merrill @ 2003-04-15  3:36 UTC (permalink / raw)
  To: jason; +Cc: gcc-prs

The following reply was made to PR middle-end/10336; it has been noted by GNATS.

From: Jason Merrill <jason@redhat.com>
To: steven@gcc.gnu.org
Cc: gcc-bugs@gcc.gnu.org, gcc-prs@gcc.gnu.org, nobody@gcc.gnu.org,
   reichelt@igpm.rwth-aachen.de, gcc-gnats@gcc.gnu.org
Subject: Re: middle-end/10336: [3.3/3.4 regression] ICE with
 -Wunreachable-code
Date: Tue, 15 Apr 2003 04:28:24 +0100

 --=-=-=
 
 Thanks, I'm testing this patch now.  Yours leaves insn null for testcases
 that were crashing, so we wouldn't ever warn.
 
 
 --=-=-=
 Content-Type: text/x-patch
 Content-Disposition: inline
 
 *** jump.c.~2~	2003-04-03 18:54:32.000000000 -0500
 --- jump.c	2003-04-14 22:48:49.000000000 -0400
 *************** never_reached_warning (avoided_insn, fin
 *** 1913,1919 ****
        us the head of a block, a NOTE_INSN_BASIC_BLOCK, which often follows
        the line note.  */
     for (insn = PREV_INSN (avoided_insn); ; insn = PREV_INSN (insn))
 !     if (GET_CODE (insn) != NOTE)
         {
   	insn = NEXT_INSN (insn);
   	break;
 --- 1913,1920 ----
        us the head of a block, a NOTE_INSN_BASIC_BLOCK, which often follows
        the line note.  */
     for (insn = PREV_INSN (avoided_insn); ; insn = PREV_INSN (insn))
 !     if (GET_CODE (insn) != NOTE
 ! 	|| NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_BEG)
         {
   	insn = NEXT_INSN (insn);
   	break;
 
 --=-=-=--


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

* Re: middle-end/10336: [3.3/3.4 regression] ICE with -Wunreachable-code
@ 2003-04-12 12:49 steven
  0 siblings, 0 replies; 5+ messages in thread
From: steven @ 2003-04-12 12:49 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, jason, nobody, reichelt

Synopsis: [3.3/3.4 regression] ICE with -Wunreachable-code

Responsible-Changed-From-To: unassigned->jason
Responsible-Changed-By: steven
Responsible-Changed-When: Sat Apr 12 12:49:49 2003
Responsible-Changed-Why:
    You broke it.  Fix is probably obvious but may not be what you intended.
State-Changed-From-To: open->analyzed
State-Changed-By: steven
State-Changed-When: Sat Apr 12 12:49:49 2003
State-Changed-Why:
    Confirmed and cause probably found.

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=10336


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

end of thread, other threads:[~2003-04-30 17:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-29 18:46 middle-end/10336: [3.3/3.4 regression] ICE with -Wunreachable-code Wolfgang Bangerth
  -- strict thread matches above, loose matches on Subject: below --
2003-04-30 17:42 jason
2003-04-15  6:36 Steven Bosscher
2003-04-15  3:36 Jason Merrill
2003-04-12 12:49 steven

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