public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/16254] New: ICE in lower_stmt, at gimple-low.c:205
@ 2004-06-29  1:56 commie1 at gmx dot net
  2004-06-29  2:19 ` [Bug c++/16254] " pinskia at gcc dot gnu dot org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: commie1 at gmx dot net @ 2004-06-29  1:56 UTC (permalink / raw)
  To: gcc-bugs

/opt/gcc35/libexec/gcc/i686-pc-linux-gnu/3.5.0/cc1plus -fpreprocessed
nsNSSCallbacks.ii -quiet -dumpbase nsNSSCallbacks.ii -auxbase-strip
nsNSSCallbacks.o  -version -fno-rtti -fno-exceptions -o nsNSSCallbacks.s
GNU C++ version 3.5.0 20040629 (experimental) (i686-pc-linux-gnu)
        compiled by GNU C version 3.5.0 20040629 (experimental).
GGC heuristics: --param ggc-min-expand=64 --param ggc-min-heapsize=64442
 <with_cleanup_expr 0xf6f98814>nsNSSCallbacks.ii: In function `void foo(int)':
nsNSSCallbacks.ii:12: internal compiler error: in lower_stmt, at gimple-low.c:205


Configured with: ../configure --prefix=/opt/gcc35 --enable-shared
--enable-threads --enable-__cxa_atexit --enable-languages=c,c++
--enable-clocale=gnu --disable-nls --disable-checking --disable-libmudflap
Thread model: posix

========================================================

struct A
  {
      ~A();

      A(int);

  };


int bar( const A& );

void foo(int i) {

  int format[1] = { bar( A(i) ) };

}

========================================================

-- 
           Summary: ICE in lower_stmt, at gimple-low.c:205
           Product: gcc
           Version: 3.5.0
            Status: UNCONFIRMED
          Severity: critical
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: commie1 at gmx dot net
                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


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


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

* [Bug c++/16254] ICE in lower_stmt, at gimple-low.c:205
  2004-06-29  1:56 [Bug c++/16254] New: ICE in lower_stmt, at gimple-low.c:205 commie1 at gmx dot net
@ 2004-06-29  2:19 ` pinskia at gcc dot gnu dot org
  2004-07-13 23:29 ` [Bug c++/16254] [3.5 Regression] " reichelt at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-06-29  2:19 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-06-29 01:56 -------
Confirmed.
Who forgot to lower the WITH_CLEANUP_EXPR expression.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rth at gcc dot gnu dot org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |ice-on-valid-code
      Known to fail|                            |3.5.0
      Known to work|                            |3.4.0
   Last reconfirmed|0000-00-00 00:00:00         |2004-06-29 01:56:23
               date|                            |
   Target Milestone|---                         |3.5.0


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


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

* [Bug c++/16254] [3.5 Regression] ICE in lower_stmt, at gimple-low.c:205
  2004-06-29  1:56 [Bug c++/16254] New: ICE in lower_stmt, at gimple-low.c:205 commie1 at gmx dot net
  2004-06-29  2:19 ` [Bug c++/16254] " pinskia at gcc dot gnu dot org
@ 2004-07-13 23:29 ` reichelt at gcc dot gnu dot org
  2004-07-17 18:31 ` pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2004-07-13 23:29 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-07-13 23:29 -------
I still see the ICE with the small testcase.

It seems as if Richard Kenner's patch
http://gcc.gnu.org/ml/gcc-cvs/2004-06/msg01124.html
is responsible for the regression.
Richard, could you please have a look?


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |reichelt at gcc dot gnu dot
                   |                            |org, kenner at gcc dot gnu
                   |                            |dot org
           Keywords|                            |monitored


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


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

* [Bug c++/16254] [3.5 Regression] ICE in lower_stmt, at gimple-low.c:205
  2004-06-29  1:56 [Bug c++/16254] New: ICE in lower_stmt, at gimple-low.c:205 commie1 at gmx dot net
  2004-06-29  2:19 ` [Bug c++/16254] " pinskia at gcc dot gnu dot org
  2004-07-13 23:29 ` [Bug c++/16254] [3.5 Regression] " reichelt at gcc dot gnu dot org
@ 2004-07-17 18:31 ` pinskia at gcc dot gnu dot org
  2004-08-26 20:30 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-07-17 18:31 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-07-17 18:31 -------
: Search converges between 2004-06-27-trunk (#473) and 2004-06-28-trunk (#474).

-- 


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


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

* [Bug c++/16254] [3.5 Regression] ICE in lower_stmt, at gimple-low.c:205
  2004-06-29  1:56 [Bug c++/16254] New: ICE in lower_stmt, at gimple-low.c:205 commie1 at gmx dot net
                   ` (2 preceding siblings ...)
  2004-07-17 18:31 ` pinskia at gcc dot gnu dot org
@ 2004-08-26 20:30 ` pinskia at gcc dot gnu dot org
  2004-09-07 22:49 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-08-26 20:30 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-08-26 20:29 -------
*** Bug 17204 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dennis at research dot bell-
                   |                            |labs dot com


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


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

* [Bug c++/16254] [3.5 Regression] ICE in lower_stmt, at gimple-low.c:205
  2004-06-29  1:56 [Bug c++/16254] New: ICE in lower_stmt, at gimple-low.c:205 commie1 at gmx dot net
                   ` (3 preceding siblings ...)
  2004-08-26 20:30 ` pinskia at gcc dot gnu dot org
@ 2004-09-07 22:49 ` pinskia at gcc dot gnu dot org
  2004-09-12 17:38 ` [Bug c++/16254] [4.0 " rth at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-09-07 22:49 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-09-07 22:49 -------
*** Bug 17354 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |larsbj at gullik dot net


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


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

* [Bug c++/16254] [4.0 Regression] ICE in lower_stmt, at gimple-low.c:205
  2004-06-29  1:56 [Bug c++/16254] New: ICE in lower_stmt, at gimple-low.c:205 commie1 at gmx dot net
                   ` (4 preceding siblings ...)
  2004-09-07 22:49 ` pinskia at gcc dot gnu dot org
@ 2004-09-12 17:38 ` rth at gcc dot gnu dot org
  2004-09-12 21:36 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: rth at gcc dot gnu dot org @ 2004-09-12 17:38 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rth at gcc dot gnu dot org  2004-09-12 17:38 -------
Looking at it.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |rth at gcc dot gnu dot org
                   |dot org                     |
             Status|NEW                         |ASSIGNED
      Known to fail|4.0                         |4.0.0
            Summary|[3.5 Regression] ICE in     |[4.0 Regression] ICE in
                   |lower_stmt, at gimple-      |lower_stmt, at gimple-
                   |low.c:205                   |low.c:205


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


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

* [Bug c++/16254] [4.0 Regression] ICE in lower_stmt, at gimple-low.c:205
  2004-06-29  1:56 [Bug c++/16254] New: ICE in lower_stmt, at gimple-low.c:205 commie1 at gmx dot net
                   ` (5 preceding siblings ...)
  2004-09-12 17:38 ` [Bug c++/16254] [4.0 " rth at gcc dot gnu dot org
@ 2004-09-12 21:36 ` cvs-commit at gcc dot gnu dot org
  2004-09-12 21:40 ` cvs-commit at gcc dot gnu dot org
  2004-09-12 21:48 ` rth at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-09-12 21:36 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-09-12 21:36 -------
Subject: Bug 16254

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	rth@gcc.gnu.org	2004-09-12 21:36:51

Modified files:
	gcc            : ChangeLog fold-const.c tree.c tree.h 
	gcc/cp         : ChangeLog semantics.c typeck.c 

Log message:
	PR c++/16254
	* fold-const.c (fold) <case CLEANUP_POINT_EXPR>: Remove.
	* tree.c, tree.h (has_cleanups): Remove.
	cp/
	* semantics.c (maybe_cleanup_point_expr): Don't call fold.
	* typeck.c (condition_conversion): Likewise.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=2.5413&r2=2.5414
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/fold-const.c.diff?cvsroot=gcc&r1=1.455&r2=1.456
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree.c.diff?cvsroot=gcc&r1=1.426&r2=1.427
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree.h.diff?cvsroot=gcc&r1=1.619&r2=1.620
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.4347&r2=1.4348
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/semantics.c.diff?cvsroot=gcc&r1=1.434&r2=1.435
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/typeck.c.diff?cvsroot=gcc&r1=1.575&r2=1.576



-- 


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


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

* [Bug c++/16254] [4.0 Regression] ICE in lower_stmt, at gimple-low.c:205
  2004-06-29  1:56 [Bug c++/16254] New: ICE in lower_stmt, at gimple-low.c:205 commie1 at gmx dot net
                   ` (6 preceding siblings ...)
  2004-09-12 21:36 ` cvs-commit at gcc dot gnu dot org
@ 2004-09-12 21:40 ` cvs-commit at gcc dot gnu dot org
  2004-09-12 21:48 ` rth at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-09-12 21:40 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-09-12 21:40 -------
Subject: Bug 16254

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	rth@gcc.gnu.org	2004-09-12 21:40:35

Added files:
	gcc/testsuite/g++.dg/eh: cleanup4.C 

Log message:
	Test case for PR 16254.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/eh/cleanup4.C.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


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


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

* [Bug c++/16254] [4.0 Regression] ICE in lower_stmt, at gimple-low.c:205
  2004-06-29  1:56 [Bug c++/16254] New: ICE in lower_stmt, at gimple-low.c:205 commie1 at gmx dot net
                   ` (7 preceding siblings ...)
  2004-09-12 21:40 ` cvs-commit at gcc dot gnu dot org
@ 2004-09-12 21:48 ` rth at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: rth at gcc dot gnu dot org @ 2004-09-12 21:48 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rth at gcc dot gnu dot org  2004-09-12 21:48 -------
Fixed.

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


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


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

end of thread, other threads:[~2004-09-12 21:48 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-06-29  1:56 [Bug c++/16254] New: ICE in lower_stmt, at gimple-low.c:205 commie1 at gmx dot net
2004-06-29  2:19 ` [Bug c++/16254] " pinskia at gcc dot gnu dot org
2004-07-13 23:29 ` [Bug c++/16254] [3.5 Regression] " reichelt at gcc dot gnu dot org
2004-07-17 18:31 ` pinskia at gcc dot gnu dot org
2004-08-26 20:30 ` pinskia at gcc dot gnu dot org
2004-09-07 22:49 ` pinskia at gcc dot gnu dot org
2004-09-12 17:38 ` [Bug c++/16254] [4.0 " rth at gcc dot gnu dot org
2004-09-12 21:36 ` cvs-commit at gcc dot gnu dot org
2004-09-12 21:40 ` cvs-commit at gcc dot gnu dot org
2004-09-12 21:48 ` rth 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).