public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: optimization/9768: [3.2 regression] [HP-PA] ICE when optimizing inline code at -O2
@ 2003-02-20 18:16 Randolph Chung
  0 siblings, 0 replies; 5+ messages in thread
From: Randolph Chung @ 2003-02-20 18:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR optimization/9768; it has been noted by GNATS.

From: Randolph Chung <randolph@tausq.org>
To: Eric Botcazou <ebotcazou@libertysurf.fr>
Cc: gcc-bugs@gcc.gnu.org, nobody@gcc.gnu.org, gcc-gnats@gcc.gnu.org
Subject: Re: optimization/9768: [3.2 regression] [HP-PA] ICE when optimizing inline code at -O2
Date: Thu, 20 Feb 2003 10:09:22 -0800

 > I've submitted the backport patch for approval on the 3.2 branch.
 thanks
 
 > P.S: does the testcase come from Allegro?
 
 yes :)
 
 randolph
 -- 
 Randolph Chung
 Debian GNU/Linux Developer, hppa/ia64 ports
 http://www.tausq.org/


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

* Re: optimization/9768: [3.2 regression] [HP-PA] ICE when optimizing inline code at -O2
@ 2003-02-20 20:28 ebotcazou
  0 siblings, 0 replies; 5+ messages in thread
From: ebotcazou @ 2003-02-20 20:28 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, nobody, tausq

Synopsis: [3.2 regression] [HP-PA] ICE when optimizing inline code at -O2

State-Changed-From-To: analyzed->closed
State-Changed-By: ebotcazou
State-Changed-When: Thu Feb 20 20:28:41 2003
State-Changed-Why:
    Fixed.

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


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

* Re: optimization/9768: [3.2 regression] [HP-PA] ICE when optimizing inline code at -O2
@ 2003-02-20 18:16 Eric Botcazou
  0 siblings, 0 replies; 5+ messages in thread
From: Eric Botcazou @ 2003-02-20 18:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR optimization/9768; it has been noted by GNATS.

From: Eric Botcazou <ebotcazou@libertysurf.fr>
To: Randolph Chung <randolph@tausq.org>
Cc: gcc-bugs@gcc.gnu.org,
 nobody@gcc.gnu.org,
 gcc-gnats@gcc.gnu.org
Subject: Re: optimization/9768: [3.2 regression] [HP-PA] ICE when optimizing inline code at -O2
Date: Thu, 20 Feb 2003 19:05:51 +0100

 > This patch "fixes" the problem, but I don't know if it's correct. 3.3
 > has a similar check
 
 I think it is. It comes from:
 
 2002-03-21  DJ Delorie  <dj@redhat.com>
 
 	* bb-reorder.c (make_reorder_chain_1): Protect against
 	when redundant edges are omitted.
 	* predict.c (dump_prediction): Likewise.
 
 I've submitted the backport patch for approval on the 3.2 branch.
 
 P.S: does the testcase come from Allegro?
 
 -- 
 Eric Botcazou


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

* Re: optimization/9768: [3.2 regression] [HP-PA] ICE when optimizing inline code at -O2
@ 2003-02-20 17:16 Randolph Chung
  0 siblings, 0 replies; 5+ messages in thread
From: Randolph Chung @ 2003-02-20 17:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR optimization/9768; it has been noted by GNATS.

From: Randolph Chung <randolph@tausq.org>
To: ebotcazou@gcc.gnu.org, gcc-bugs@gcc.gnu.org, gcc-prs@gcc.gnu.org,
	nobody@gcc.gnu.org, gcc-gnats@gcc.gnu.org
Cc:  
Subject: Re: optimization/9768: [3.2 regression] [HP-PA] ICE when optimizing inline code at -O2
Date: Thu, 20 Feb 2003 09:09:32 -0800

 This patch "fixes" the problem, but I don't know if it's correct. 3.3
 has a similar check
 
 legolas[9:08] gcc% diff -u bb-reorder.c.orig bb-reorder.c
 --- bb-reorder.c.orig   2003-02-20 09:04:47.000000000 -0800
 +++ bb-reorder.c        2003-02-20 09:05:21.000000000 -0800
 @@ -205,7 +205,7 @@
             e_taken = e;
         }
 
 -      next = (taken ? e_taken : e_fall)->dest;
 +      next = ((taken && e_taken) ? e_taken : e_fall)->dest;
      }
 
    /* In the absence of a prediction, disturb things as little as possible
 
 
 -- 
 Randolph Chung
 Debian GNU/Linux Developer, hppa/ia64 ports
 http://www.tausq.org/


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

* Re: optimization/9768: [3.2 regression] [HP-PA] ICE when optimizing inline code at -O2
@ 2003-02-20  8:01 ebotcazou
  0 siblings, 0 replies; 5+ messages in thread
From: ebotcazou @ 2003-02-20  8:01 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, nobody, tausq

Old Synopsis: [hppa-linux, gcc-3.2 regression] ICE when optimizing inline code
New Synopsis: [3.2 regression] [HP-PA] ICE when optimizing inline code at -O2

State-Changed-From-To: open->analyzed
State-Changed-By: ebotcazou
State-Changed-When: Thu Feb 20 08:01:37 2003
State-Changed-Why:
    Confirmed on 3.2 branch. 3.3 (and probably mainline) is not affected.

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


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

end of thread, other threads:[~2003-02-20 20:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-20 18:16 optimization/9768: [3.2 regression] [HP-PA] ICE when optimizing inline code at -O2 Randolph Chung
  -- strict thread matches above, loose matches on Subject: below --
2003-02-20 20:28 ebotcazou
2003-02-20 18:16 Eric Botcazou
2003-02-20 17:16 Randolph Chung
2003-02-20  8:01 ebotcazou

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