public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions
@ 2003-07-22 22:26 nick at ilm dot com
  2003-07-22 22:28 ` [Bug c++/11637] " nick at ilm dot com
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: nick at ilm dot com @ 2003-07-22 22: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=11637

           Summary: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-
                    exceptions
           Product: gcc
           Version: 3.3.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        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

using the gcc-3.3.1-20030720 prerelease,
binutils-2.4
the following code 

----
#include <iostream>

void foo(float f);

void
split1()
{
    std::cout << .1f ;
    foo(.1f);
}
---

causes:

> /dept/rnd/vendor/gcc-3.3.1-20030720/bin/g++ -fnon-call-exceptions -O2 -c
asmbug.C -o /dev/null
/usr/tmp/cchhQIen.s: Assembler messages:
/usr/tmp/cchhQIen.s:25: Error: junk `.00000001490116119384766e-1' after expression
/usr/tmp/cchhQIen.s:25: Error: too many memory references for `mov'


the assembly generated for split1 is:

---
.globl _Z6split1v
        .type   _Z6split1v, @function
_Z6split1v:
.LFB1607:
        pushl   %ebp
.LCFI0:
        movl    %esp, %ebp
.LCFI1:
        subl    $24, %esp
.LCFI2:
        flds    .LC1
        movl    $_ZSt4cout, (%esp)
        fstpl   4(%esp)
        call    _ZNSolsEd
        movl    1.00000001490116119384766e-1, (%esp)
        call    _Z3foof
        movl    %ebp, %esp
        popl    %ebp
        ret
---

I'll attach preprocessed source and resulting assembly to the bug.

-nick


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

* [Bug c++/11637] [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
@ 2003-07-22 22:28 ` nick at ilm dot com
  2003-07-22 22:29 ` nick at ilm dot com
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: nick at ilm dot com @ 2003-07-22 22:28 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=11637



------- Additional Comments From nick at ilm dot com  2003-07-22 22:28 -------
Created an attachment (id=4456)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=4456&action=view)
preprocessed source triggering bug


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

* [Bug c++/11637] [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
  2003-07-22 22:28 ` [Bug c++/11637] " nick at ilm dot com
@ 2003-07-22 22:29 ` nick at ilm dot com
  2003-07-22 22:43 ` [Bug target/11637] [3.3/3.4 Regression]g++ " pinskia at physics dot uc dot edu
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: nick at ilm dot com @ 2003-07-22 22:29 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=11637



------- Additional Comments From nick at ilm dot com  2003-07-22 22:29 -------
Created an attachment (id=4457)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=4457&action=view)
resulting assembly from the compiler


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

* [Bug target/11637] [3.3/3.4 Regression]g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
  2003-07-22 22:28 ` [Bug c++/11637] " nick at ilm dot com
  2003-07-22 22:29 ` nick at ilm dot com
@ 2003-07-22 22:43 ` pinskia at physics dot uc dot edu
  2003-07-23  3:47 ` pinskia at physics dot uc dot edu
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at physics dot uc dot edu @ 2003-07-22 22: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=11637


pinskia at physics dot uc dot edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |critical
             Status|UNCONFIRMED                 |NEW
          Component|c++                         |target
     Ever Confirmed|                            |1
           Keywords|                            |wrong-code
           Priority|P2                          |P1
   Last reconfirmed|0000-00-00 00:00:00         |2003-07-22 22:43:08
               date|                            |
            Summary|[3.3.1 prerelease] g++      |[3.3/3.4 Regression]g++
                   |invalid assembly with -fnon-|invalid assembly with -fnon-
                   |call-exceptions             |call-exceptions
   Target Milestone|3.4                         |3.3.1


------- Additional Comments From pinskia at physics dot uc dot edu  2003-07-22 22:43 -------
This looks like a bad regression I can reproduce it on the mainline (20030719)  and 3.3.1 
(20030707).  I think the problem is only when printing out the floating point number.
There might be a way to construct a testcase which does not use -fnon-call-exceptions.


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

* [Bug target/11637] [3.3/3.4 Regression]g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
                   ` (2 preceding siblings ...)
  2003-07-22 22:43 ` [Bug target/11637] [3.3/3.4 Regression]g++ " pinskia at physics dot uc dot edu
@ 2003-07-23  3:47 ` pinskia at physics dot uc dot edu
  2003-07-25 23:07 ` janis187 at us dot ibm dot com
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at physics dot uc dot edu @ 2003-07-23  3:47 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=11637



------- Additional Comments From pinskia at physics dot uc dot edu  2003-07-23 03:47 -------
The simplified example does not show the problem on the mainline (20030719) but it 
does show the problem in 3.3.1 (20030707).


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

* [Bug target/11637] [3.3/3.4 Regression]g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
                   ` (3 preceding siblings ...)
  2003-07-23  3:47 ` pinskia at physics dot uc dot edu
@ 2003-07-25 23:07 ` janis187 at us dot ibm dot com
  2003-08-03 16:02 ` mmitchel at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: janis187 at us dot ibm dot com @ 2003-07-25 23: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=11637



------- Additional Comments From janis187 at us dot ibm dot com  2003-07-25 23:07 -------
The regression in PR 11637 was introduced or exposed with this patch:

--- gcc/gcc/ChangeLog ---

2002-11-17  Graham Stott  <graham.stott@btinternet.com>

        * real.c (real_to_decimal): Fix buffer overrun when buffer size
        is smaller than representation.

It is still broken on the 3.3-branch but was fixed on mainline by:

--- gcc/gcc/ChangeLog ---

Tue Jan 14 00:45:33 CET 2003  Jan Hubicka  <jh@suse.cz>

        * convert.c (strip_float_extensions):  Look for narrowest type handling
        FP constants.

        * fold-const.c (fold):  Fold (double)float1 CMP (double)float2 into
        float1 CMP float2.
        * convert.c (strip_float_extensions): Make global.
        * tree.h (strip_float_extensions): Declare.

The regression hunt was done on i686-pc-linux-gnu using the small test
case compiled with "-O2 -fnon-call-exceptions, and then searching the
generated .s file for "3e-2".


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

* [Bug target/11637] [3.3/3.4 Regression]g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
                   ` (4 preceding siblings ...)
  2003-07-25 23:07 ` janis187 at us dot ibm dot com
@ 2003-08-03 16:02 ` mmitchel at gcc dot gnu dot org
  2003-08-03 16:03 ` mmitchel at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2003-08-03 16:02 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=11637



------- Additional Comments From mmitchel at gcc dot gnu dot org  2003-08-03 16:02 -------
Postponed until GCC 3.3.2.


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

* [Bug target/11637] [3.3/3.4 Regression]g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
                   ` (5 preceding siblings ...)
  2003-08-03 16:02 ` mmitchel at gcc dot gnu dot org
@ 2003-08-03 16:03 ` mmitchel at gcc dot gnu dot org
  2003-09-13 10:33 ` ebotcazou at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2003-08-03 16:03 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=11637


mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.3.1                       |3.3.2


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

* [Bug target/11637] [3.3/3.4 Regression]g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
                   ` (6 preceding siblings ...)
  2003-08-03 16:03 ` mmitchel at gcc dot gnu dot org
@ 2003-09-13 10:33 ` ebotcazou at gcc dot gnu dot org
  2003-10-04  6:12 ` [Bug optimization/11637] " ebotcazou at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2003-09-13 10:33 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=11637


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-13 07:17 -------
Fixing.


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

* [Bug optimization/11637] [3.3/3.4 Regression]g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
                   ` (7 preceding siblings ...)
  2003-09-13 10:33 ` ebotcazou at gcc dot gnu dot org
@ 2003-10-04  6:12 ` ebotcazou at gcc dot gnu dot org
  2003-10-05 18:22 ` mark at codesourcery dot com
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2003-10-04  6: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=11637



------- Additional Comments From ebotcazou at gcc dot gnu dot org  2003-10-04 06:12 -------
Diagnostic: http://gcc.gnu.org/ml/gcc-patches/2003-09/msg00872.html
Patch: http://gcc.gnu.org/ml/gcc-patches/2003-09/msg01246.html


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

* [Bug optimization/11637] [3.3/3.4 Regression]g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
                   ` (8 preceding siblings ...)
  2003-10-04  6:12 ` [Bug optimization/11637] " ebotcazou at gcc dot gnu dot org
@ 2003-10-05 18:22 ` mark at codesourcery dot com
  2003-10-06  6:43 ` ebotcazou at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: mark at codesourcery dot com @ 2003-10-05 18:22 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=11637



------- Additional Comments From mark at codesourcery dot com  2003-10-05 18:22 -------
Subject: Re:  [3.3/3.4 Regression]g++ invalid
	assembly with -fnon-call-exceptions

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=11637

This patch is OK, with one caveat: I don't understand why it's necessary
to remove REG_NOALIAS notes.  If that's not necessary to fix the test
case in question, please omit that one part of the patch.  If it is
necessary, go ahead and check in the patch, but please explain what's
going wrong there.

(The docs say that REG_NOALIAS is attached to call instructions, and
here I thought we were always looking a SET.)

Thanks,


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

* [Bug optimization/11637] [3.3/3.4 Regression]g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
                   ` (9 preceding siblings ...)
  2003-10-05 18:22 ` mark at codesourcery dot com
@ 2003-10-06  6:43 ` ebotcazou at gcc dot gnu dot org
  2003-10-06  8:52 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2003-10-06  6: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=11637



------- Additional Comments From ebotcazou at gcc dot gnu dot org  2003-10-06 06:43 -------
You're right, removing REG_NOALIAS notes is not necessary. I included it because
the first version of the patch (which was messy) tweaked distribute_notes instead,
and distribute_notes treats the 3 kinds of notes the same way.

I'll remove it. Thanks for the review.


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

* [Bug optimization/11637] [3.3/3.4 Regression]g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
                   ` (10 preceding siblings ...)
  2003-10-06  6:43 ` ebotcazou at gcc dot gnu dot org
@ 2003-10-06  8:52 ` cvs-commit at gcc dot gnu dot org
  2003-10-06  8:59 ` cvs-commit at gcc dot gnu dot org
  2003-10-06  9:00 ` ebotcazou at gcc dot gnu dot org
  13 siblings, 0 replies; 15+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-10-06  8:52 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=11637



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-10-06 08:52 -------
Subject: Bug 11637

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	ebotcazou@gcc.gnu.org	2003-10-06 08:52:23

Modified files:
	gcc            : ChangeLog combine.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/g++.dg/opt: float1.C 

Log message:
	2003-10-06  Eric Botcazou  <ebotcazou@libertysurf.fr>
	
	PR optimization/11637
	* combine.c (adjust_for_new_dest): New function to adjust the
	notes and LOG_LINKS when the dest of an insn has changed.
	(try_combine): Use it when deleting the first insn of a two-insn
	parallel or splitting a two-load parallel.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=2.1296&r2=2.1297
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/combine.c.diff?cvsroot=gcc&r1=1.389&r2=1.390
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.3096&r2=1.3097
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/opt/float1.C.diff?cvsroot=gcc&r1=NONE&r2=1.1


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

* [Bug optimization/11637] [3.3/3.4 Regression]g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
                   ` (11 preceding siblings ...)
  2003-10-06  8:52 ` cvs-commit at gcc dot gnu dot org
@ 2003-10-06  8:59 ` cvs-commit at gcc dot gnu dot org
  2003-10-06  9:00 ` ebotcazou at gcc dot gnu dot org
  13 siblings, 0 replies; 15+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-10-06  8:59 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=11637



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-10-06 08:59 -------
Subject: Bug 11637

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	ebotcazou@gcc.gnu.org	2003-10-06 08:59:02

Modified files:
	gcc            : ChangeLog combine.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/g++.dg/opt: float1.C 

Log message:
	PR optimization/11637
	* combine.c (adjust_for_new_dest): New function to adjust the
	notes and LOG_LINKS when the dest of an insn has changed.
	(try_combine): Use it when deleting the first insn of a two-insn
	parallel or splitting a two-load parallel.

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.771&r2=1.16114.2.772
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/combine.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.325.2.13&r2=1.325.2.14
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.297&r2=1.2261.2.298
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/opt/float1.C.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=NONE&r2=1.1.2.1


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

* [Bug optimization/11637] [3.3/3.4 Regression]g++ invalid assembly with -fnon-call-exceptions
  2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
                   ` (12 preceding siblings ...)
  2003-10-06  8:59 ` cvs-commit at gcc dot gnu dot org
@ 2003-10-06  9:00 ` ebotcazou at gcc dot gnu dot org
  13 siblings, 0 replies; 15+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2003-10-06  9:00 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=11637


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:00 -------
Patch applied with Mark's correction.


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

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

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-22 22:26 [Bug c++/11637] New: [3.3.1 prerelease] g++ invalid assembly with -fnon-call-exceptions nick at ilm dot com
2003-07-22 22:28 ` [Bug c++/11637] " nick at ilm dot com
2003-07-22 22:29 ` nick at ilm dot com
2003-07-22 22:43 ` [Bug target/11637] [3.3/3.4 Regression]g++ " pinskia at physics dot uc dot edu
2003-07-23  3:47 ` pinskia at physics dot uc dot edu
2003-07-25 23:07 ` janis187 at us dot ibm dot com
2003-08-03 16:02 ` mmitchel at gcc dot gnu dot org
2003-08-03 16:03 ` mmitchel at gcc dot gnu dot org
2003-09-13 10:33 ` ebotcazou at gcc dot gnu dot org
2003-10-04  6:12 ` [Bug optimization/11637] " ebotcazou at gcc dot gnu dot org
2003-10-05 18:22 ` mark at codesourcery dot com
2003-10-06  6:43 ` ebotcazou at gcc dot gnu dot org
2003-10-06  8:52 ` cvs-commit at gcc dot gnu dot org
2003-10-06  8:59 ` cvs-commit at gcc dot gnu dot org
2003-10-06  9:00 ` 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).