public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
@ 2003-09-08 20:12 nick at ilm dot com
  2003-09-08 20:14 ` [Bug optimization/12215] " nick at ilm dot com
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: nick at ilm dot com @ 2003-09-08 20:12 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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

           Summary: [3.3.1 regression] ICE in make_label_edge with -fnon-
                    call-exceptions -fno-gcse -O2
           Product: gcc
           Version: 3.3.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: nick at ilm dot com
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu

The following code triggers an ICE in the 3.3.1 release:

/dept/rnd/vendor/gcc-3.3.1-notpatched/bin/g++ -E gcc331_ie.C > gcc331_ie.ii
/dept/rnd/vendor/gcc-3.3.1-notpatched/bin/g++ -fnon-call-exceptions -fno-gcse
-O2  gcc331_ie.ii -o gcc331_ie
gcc331_ie.C: In function `int main(int, const char**)':
gcc331_ie.C:39: internal compiler error: in make_label_edge, at cfgbuild.c:238
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

---------
#include <string>

void getArg( int &i, int argc, const char **argv, float &arg0 )
{
    if ( i < argc )
    {
        arg0 = atof( argv[i++] );
    }
}

int main (int argc, const char **argv)
{
    float               val = 0.0;
    int                 i = 1;

    //
    // Parse the arguments
    //
    try {
        while ( i < argc )
        {
            std::string arg( argv[i++]);

            if ( arg == "-" )
            {
                int e=0;
                throw( e );
            }
            else if ( arg == "-op" )
            {
                getArg( i, argc, argv, val );
            }
        }
    } catch (...) {

    }

    return 0;
}
-----

It compiles with 3.2.3.  It also compiles if gcse is enabled, but
bug 11646 is keeping us from doing that with the rest of the code :/

-nick


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

* [Bug optimization/12215] [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
@ 2003-09-08 20:14 ` nick at ilm dot com
  2003-09-08 20:18 ` nick at ilm dot com
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: nick at ilm dot com @ 2003-09-08 20:14 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From nick at ilm dot com  2003-09-08 20:14 -------
Created an attachment (id=4719)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=4719&action=view)
bzip2 compressed preprocessed test case for pr 12215


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

* [Bug optimization/12215] [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
  2003-09-08 20:14 ` [Bug optimization/12215] " nick at ilm dot com
@ 2003-09-08 20:18 ` nick at ilm dot com
  2003-09-11  1:35 ` pinskia at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: nick at ilm dot com @ 2003-09-08 20:18 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From nick at ilm dot com  2003-09-08 20:18 -------
*** Bug 12214 has been marked as a duplicate of this bug. ***


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

* [Bug optimization/12215] [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
  2003-09-08 20:14 ` [Bug optimization/12215] " nick at ilm dot com
  2003-09-08 20:18 ` nick at ilm dot com
@ 2003-09-11  1:35 ` pinskia at gcc dot gnu dot org
  2003-09-11  1:43 ` [Bug optimization/12215] [3.3 " bangerth at dealii dot org
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-09-11  1:35 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |critical
           Keywords|                            |ice-on-valid-code
   Target Milestone|---                         |3.3.2


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

* [Bug optimization/12215] [3.3 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
                   ` (2 preceding siblings ...)
  2003-09-11  1:35 ` pinskia at gcc dot gnu dot org
@ 2003-09-11  1:43 ` bangerth at dealii dot org
  2003-09-11  2:05 ` bangerth at dealii dot org
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: bangerth at dealii dot org @ 2003-09-11  1:43 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


bangerth at dealii dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2003-09-11 01:43:47
               date|                            |
            Summary|[3.3.1 regression] ICE in   |[3.3 regression] ICE in
                   |make_label_edge with -fnon- |make_label_edge with -fnon-
                   |call-exceptions -fno-gcse - |call-exceptions -fno-gcse -
                   |O2                          |O2


------- Additional Comments From bangerth at dealii dot org  2003-09-11 01:43 -------
Confirmed. A regression on 3.3 branch only.
W.


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

* [Bug optimization/12215] [3.3 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
                   ` (3 preceding siblings ...)
  2003-09-11  1:43 ` [Bug optimization/12215] [3.3 " bangerth at dealii dot org
@ 2003-09-11  2:05 ` bangerth at dealii dot org
  2003-09-11 17:07 ` ebotcazou at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: bangerth at dealii dot org @ 2003-09-11  2:05 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From bangerth at dealii dot org  2003-09-11 02:05 -------
This one was fairly painless compared to some of the optimization PRs:
---------------------------
struct B {
    ~B() throw() {}
};

struct X {
    X(const char*, const B&);
    ~X() {}
};

bool m();
void f(int &i, float &arg0);

void g (const char **argv) {
  float val;
  int i = 1;

  try {
    while ( i < 1 )
      {
        X arg(argv[i], B());
        if (m())
          throw(0);

        f(i, val);
      }
  } catch (...) {}
}
------------------------------------

It only fails with 3.3, but that doesn't mean that the bug is
not also present in latent form on mainline, of course:

g/x> /home/bangerth/bin/gcc-3.3.2-pre/bin/c++ -fnon-call-exceptions -fno-gcse
-O2 -c y.cc
y.cc: In function `void g(const char**)':
y.cc:27: internal compiler error: in make_label_edge, at cfgbuild.c:238
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

W.


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

* [Bug optimization/12215] [3.3 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
                   ` (4 preceding siblings ...)
  2003-09-11  2:05 ` bangerth at dealii dot org
@ 2003-09-11 17:07 ` ebotcazou at gcc dot gnu dot org
  2003-10-04  6:14 ` ebotcazou at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2003-09-11 17:07 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


ebotcazou at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |ebotcazou at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED


------- Additional Comments From ebotcazou at gcc dot gnu dot org  2003-09-11 17:07 -------
Related to PR opt/11083. Investigating.


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

* [Bug optimization/12215] [3.3 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
                   ` (5 preceding siblings ...)
  2003-09-11 17:07 ` ebotcazou at gcc dot gnu dot org
@ 2003-10-04  6:14 ` ebotcazou at gcc dot gnu dot org
  2003-10-05 18:27 ` mark at codesourcery dot com
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2003-10-04  6:14 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From ebotcazou at gcc dot gnu dot org  2003-10-04 06:14 -------
Patch: http://gcc.gnu.org/ml/gcc-patches/2003-09/msg00809.html
Erratum: http://gcc.gnu.org/ml/gcc-patches/2003-09/msg00936.html


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

* [Bug optimization/12215] [3.3 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
                   ` (6 preceding siblings ...)
  2003-10-04  6:14 ` ebotcazou at gcc dot gnu dot org
@ 2003-10-05 18:27 ` mark at codesourcery dot com
  2003-10-06  7:20 ` ebotcazou at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: mark at codesourcery dot com @ 2003-10-05 18:27 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From mark at codesourcery dot com  2003-10-05 18:27 -------
Subject: Re:  [3.3 regression] ICE in
	make_label_edge with -fnon-call-exceptions -fno-gcse -O2

On Fri, 2003-10-03 at 23:17, ebotcazou at gcc dot gnu dot org wrote:
> PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12215

Let's call the possibly-trapping insn I.  Let's call the next nonnote
insn after I N.

This patch changes the compiler to emit the new instruction (X) right
before N, rather than right after I.  Now, N and I are in different
basic blocks.  So, X will be executed any time control enters the block
containing N, even if not falling through from I.  Won't that be wrong?

Thanks,


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

* [Bug optimization/12215] [3.3 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
                   ` (7 preceding siblings ...)
  2003-10-05 18:27 ` mark at codesourcery dot com
@ 2003-10-06  7:20 ` ebotcazou at gcc dot gnu dot org
  2003-10-06  7:46 ` mark at codesourcery dot com
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2003-10-06  7:20 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From ebotcazou at gcc dot gnu dot org  2003-10-06 07:20 -------
No, because I think we are guaranteed that the control flow can't enter block(N)
without falling through from block(I) by cse_set_around_loop, because we are
guaranteed there is no label between them:

	      /* Look for an insn in front of LOOP_START that sets
		 something in the desired mode to SET_SRC (x) before we hit
		 a label or CALL_INSN.  */

	      for (p = prev_nonnote_insn (loop_start);
		   p && GET_CODE (p) != CALL_INSN
		   && GET_CODE (p) != CODE_LABEL;
		   p = prev_nonnote_insn  (p))

[sorry, I should have mentioned it in my first message].


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

* [Bug optimization/12215] [3.3 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
                   ` (8 preceding siblings ...)
  2003-10-06  7:20 ` ebotcazou at gcc dot gnu dot org
@ 2003-10-06  7:46 ` mark at codesourcery dot com
  2003-10-06  9:18 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: mark at codesourcery dot com @ 2003-10-06  7:46 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From mark at codesourcery dot com  2003-10-06 07:45 -------
Subject: Re:  [3.3 regression] ICE in
	make_label_edge with -fnon-call-exceptions -fno-gcse -O2

On Mon, 2003-10-06 at 00:20, ebotcazou at gcc dot gnu dot org wrote:
> PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12215

OK, it sounds like you've thought this through carefully, and your
explanation makes sense.

Your patch is OK, then.

Thanks,


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

* [Bug optimization/12215] [3.3 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
                   ` (9 preceding siblings ...)
  2003-10-06  7:46 ` mark at codesourcery dot com
@ 2003-10-06  9:18 ` cvs-commit at gcc dot gnu dot org
  2003-10-06  9:24 ` cvs-commit at gcc dot gnu dot org
  2003-10-06  9:26 ` ebotcazou at gcc dot gnu dot org
  12 siblings, 0 replies; 14+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-10-06  9:18 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-10-06 09:18 -------
Subject: Bug 12215

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	ebotcazou@gcc.gnu.org	2003-10-06 09:18:01

Modified files:
	gcc            : ChangeLog cse.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/g++.dg/opt: cfg2.C 

Log message:
	PR optimization/12215
	* cse.c (cse_set_around_loop): Emit the move at the beginning
	of the next basic block for trapping sets.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=2.1297&r2=2.1298
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cse.c.diff?cvsroot=gcc&r1=1.271&r2=1.272
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.3097&r2=1.3098
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/opt/cfg2.C.diff?cvsroot=gcc&r1=NONE&r2=1.1


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

* [Bug optimization/12215] [3.3 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
                   ` (10 preceding siblings ...)
  2003-10-06  9:18 ` cvs-commit at gcc dot gnu dot org
@ 2003-10-06  9:24 ` cvs-commit at gcc dot gnu dot org
  2003-10-06  9:26 ` ebotcazou at gcc dot gnu dot org
  12 siblings, 0 replies; 14+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-10-06  9:24 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-10-06 09:24 -------
Subject: Bug 12215

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	ebotcazou@gcc.gnu.org	2003-10-06 09:24:18

Modified files:
	gcc            : ChangeLog cse.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/g++.dg/opt: cfg2.C 

Log message:
	PR optimization/12215
	* cse.c (cse_set_around_loop): Emit the move at the beginning
	of the next basic block for trapping sets.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.16114.2.772&r2=1.16114.2.773
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cse.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.244.2.2&r2=1.244.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.2261.2.298&r2=1.2261.2.299
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/opt/cfg2.C.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=NONE&r2=1.1.2.1


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

* [Bug optimization/12215] [3.3 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2
  2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
                   ` (11 preceding siblings ...)
  2003-10-06  9:24 ` cvs-commit at gcc dot gnu dot org
@ 2003-10-06  9:26 ` ebotcazou at gcc dot gnu dot org
  12 siblings, 0 replies; 14+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2003-10-06  9:26 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


ebotcazou at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


------- Additional Comments From ebotcazou at gcc dot gnu dot org  2003-10-06 09:26 -------
Original patch applied.


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

end of thread, other threads:[~2003-10-06  9:26 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-09-08 20:12 [Bug optimization/12215] New: [3.3.1 regression] ICE in make_label_edge with -fnon-call-exceptions -fno-gcse -O2 nick at ilm dot com
2003-09-08 20:14 ` [Bug optimization/12215] " nick at ilm dot com
2003-09-08 20:18 ` nick at ilm dot com
2003-09-11  1:35 ` pinskia at gcc dot gnu dot org
2003-09-11  1:43 ` [Bug optimization/12215] [3.3 " bangerth at dealii dot org
2003-09-11  2:05 ` bangerth at dealii dot org
2003-09-11 17:07 ` ebotcazou at gcc dot gnu dot org
2003-10-04  6:14 ` ebotcazou at gcc dot gnu dot org
2003-10-05 18:27 ` mark at codesourcery dot com
2003-10-06  7:20 ` ebotcazou at gcc dot gnu dot org
2003-10-06  7:46 ` mark at codesourcery dot com
2003-10-06  9:18 ` cvs-commit at gcc dot gnu dot org
2003-10-06  9:24 ` cvs-commit at gcc dot gnu dot org
2003-10-06  9:26 ` ebotcazou at gcc dot gnu dot 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).