public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/29363]  New: [4.2 regression] ICE throwing undeclared object
@ 2006-10-05 23:37 reichelt at gcc dot gnu dot org
  2006-10-06  3:51 ` [Bug c++/29363] " pinskia at gcc dot gnu dot org
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2006-10-05 23:37 UTC (permalink / raw)
  To: gcc-bugs

The following invalid code snippet triggers an ICE on mainline:

==============================
template<int> void foo()
{
  throw A();
  struct A {} a;
}

template void foo<0>();
==============================

bug.cc: In function 'void foo()':
bug.cc:3: error: there are no arguments to 'A' that depend on a template
parameter, so a declaration of 'A' must be available
bug.cc:3: error: (if you use '-fpermissive', G++ will accept your code, but
allowing the use of an undeclared name is deprecated)
bug.cc: In function 'void foo() [with int <anonymous> = 0]':
bug.cc:7:   instantiated from here
bug.cc:3: error: 'A' was not declared in this scope
bug.cc: At global scope:
bug.cc: In instantiation of 'foo() [with int <anonymous> = 0]::A':
bug.cc:4:   instantiated from 'void foo() [with int <anonymous> = 0]'
bug.cc:7:   instantiated from here
bug.cc:4: internal compiler error: Segmentation fault
Please submit a full bug report, [etc.]


-- 
           Summary: [4.2 regression] ICE throwing undeclared object
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Keywords: ice-on-invalid-code, error-recovery, monitored
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: reichelt at gcc dot gnu dot org


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


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

* [Bug c++/29363] [4.2 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
@ 2006-10-06  3:51 ` pinskia at gcc dot gnu dot org
  2006-10-08  2:44 ` pinskia at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-10-06  3:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2006-10-06 03:51 -------
Confirmed.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
           Severity|normal                      |minor
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
      Known to fail|                            |4.2.0
      Known to work|                            |4.1.2
   Last reconfirmed|0000-00-00 00:00:00         |2006-10-06 03:51:36
               date|                            |
   Target Milestone|---                         |4.2.0


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


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

* [Bug c++/29363] [4.2 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
  2006-10-06  3:51 ` [Bug c++/29363] " pinskia at gcc dot gnu dot org
@ 2006-10-08  2:44 ` pinskia at gcc dot gnu dot org
  2006-10-15 21:18 ` mmitchel at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-10-08  2:44 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from pinskia at gcc dot gnu dot org  2006-10-08 02:44 -------
typedecl = TYPE_MAIN_DECL (type);
typedecl is NULL here.
struct AD.1953 is the type.


-- 


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


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

* [Bug c++/29363] [4.2 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
  2006-10-06  3:51 ` [Bug c++/29363] " pinskia at gcc dot gnu dot org
  2006-10-08  2:44 ` pinskia at gcc dot gnu dot org
@ 2006-10-15 21:18 ` mmitchel at gcc dot gnu dot org
  2006-10-17 23:44 ` lmillward at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-10-15 21:18 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P2


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


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

* [Bug c++/29363] [4.2 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2006-10-15 21:18 ` mmitchel at gcc dot gnu dot org
@ 2006-10-17 23:44 ` lmillward at gcc dot gnu dot org
  2006-10-18 15:00 ` patchapp at dberlin dot org
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: lmillward at gcc dot gnu dot org @ 2006-10-17 23:44 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from lmillward at gcc dot gnu dot org  2006-10-17 23:44 -------
Testing a patch.


-- 

lmillward at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |lmillward at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2006-10-06 03:51:36         |2006-10-17 23:44:30
               date|                            |


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


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

* [Bug c++/29363] [4.2 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2006-10-17 23:44 ` lmillward at gcc dot gnu dot org
@ 2006-10-18 15:00 ` patchapp at dberlin dot org
  2007-05-14 21:27 ` [Bug c++/29363] [4.2/4.3 " mmitchel at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: patchapp at dberlin dot org @ 2006-10-18 15:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from patchapp at dberlin dot org  2006-10-18 15:00 -------
Subject: Bug number PR c++/29363

A patch for this bug has been added to the patch tracker.
The mailing list url for the patch is
http://gcc.gnu.org/ml/gcc-patches/2006-10/msg00914.html


-- 


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


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

* [Bug c++/29363] [4.2/4.3 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2006-10-18 15:00 ` patchapp at dberlin dot org
@ 2007-05-14 21:27 ` mmitchel at gcc dot gnu dot org
  2007-07-20  3:52 ` mmitchel at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-05-14 21:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from mmitchel at gcc dot gnu dot org  2007-05-14 22:26 -------
Will not be fixed in 4.2.0; retargeting at 4.2.1.


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.2.0                       |4.2.1


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


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

* [Bug c++/29363] [4.2/4.3 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2007-05-14 21:27 ` [Bug c++/29363] [4.2/4.3 " mmitchel at gcc dot gnu dot org
@ 2007-07-20  3:52 ` mmitchel at gcc dot gnu dot org
  2007-10-09 19:26 ` mmitchel at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-07-20  3:52 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.2.1                       |4.2.2


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


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

* [Bug c++/29363] [4.2/4.3 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2007-07-20  3:52 ` mmitchel at gcc dot gnu dot org
@ 2007-10-09 19:26 ` mmitchel at gcc dot gnu dot org
  2007-12-21  7:29 ` steven at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-10-09 19:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from mmitchel at gcc dot gnu dot org  2007-10-09 19:21 -------
Change target milestone to 4.2.3, as 4.2.2 has been released.


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.2.2                       |4.2.3


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


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

* [Bug c++/29363] [4.2/4.3 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2007-10-09 19:26 ` mmitchel at gcc dot gnu dot org
@ 2007-12-21  7:29 ` steven at gcc dot gnu dot org
  2008-02-01 16:55 ` jsm28 at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: steven at gcc dot gnu dot org @ 2007-12-21  7:29 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from steven at gcc dot gnu dot org  2007-12-21 07:28 -------
Lee, 

Patch was rejected: http://gcc.gnu.org/ml/gcc-patches/2006-10/msg00976.html

Was it your plan to give it another try from behind the drawing board? :-)


-- 

steven at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |WAITING


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


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

* [Bug c++/29363] [4.2/4.3 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2007-12-21  7:29 ` steven at gcc dot gnu dot org
@ 2008-02-01 16:55 ` jsm28 at gcc dot gnu dot org
  2008-05-19 20:30 ` [Bug c++/29363] [4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-02-01 16:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from jsm28 at gcc dot gnu dot org  2008-02-01 16:53 -------
4.2.3 is being released now, changing milestones of open bugs to 4.2.4.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.2.3                       |4.2.4


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


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

* [Bug c++/29363] [4.2/4.3/4.4 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (9 preceding siblings ...)
  2008-02-01 16:55 ` jsm28 at gcc dot gnu dot org
@ 2008-05-19 20:30 ` jsm28 at gcc dot gnu dot org
  2008-08-16 23:21 ` pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-05-19 20:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from jsm28 at gcc dot gnu dot org  2008-05-19 20:22 -------
4.2.4 is being released, changing milestones to 4.2.5.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.2.4                       |4.2.5


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


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

* [Bug c++/29363] [4.2/4.3/4.4 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (10 preceding siblings ...)
  2008-05-19 20:30 ` [Bug c++/29363] [4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
@ 2008-08-16 23:21 ` pinskia at gcc dot gnu dot org
  2008-08-16 23:23 ` pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-08-16 23:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from pinskia at gcc dot gnu dot org  2008-08-16 23:20 -------
This bug should never have been in the waiting state, waiting state is for
waiting on information from the reporter and not another developer.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW
   Last reconfirmed|2007-08-06 15:49:59         |2008-08-16 23:20:22
               date|                            |


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


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

* [Bug c++/29363] [4.2/4.3/4.4 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (11 preceding siblings ...)
  2008-08-16 23:21 ` pinskia at gcc dot gnu dot org
@ 2008-08-16 23:23 ` pinskia at gcc dot gnu dot org
  2008-08-17 12:01 ` jakub at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-08-16 23:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from pinskia at gcc dot gnu dot org  2008-08-16 23:21 -------
Also this seems like this should be a P4 or lower as it is an error recovery
issue.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P2                          |P3


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


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

* [Bug c++/29363] [4.2/4.3/4.4 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (12 preceding siblings ...)
  2008-08-16 23:23 ` pinskia at gcc dot gnu dot org
@ 2008-08-17 12:01 ` jakub at gcc dot gnu dot org
  2009-03-31 19:47 ` [Bug c++/29363] [4.3/4.4/4.5 " jsm28 at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jakub at gcc dot gnu dot org @ 2008-08-17 12:01 UTC (permalink / raw)
  To: gcc-bugs



-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4


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


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

* [Bug c++/29363] [4.3/4.4/4.5 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (13 preceding siblings ...)
  2008-08-17 12:01 ` jakub at gcc dot gnu dot org
@ 2009-03-31 19:47 ` jsm28 at gcc dot gnu dot org
  2009-08-04 12:35 ` rguenth at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2009-03-31 19:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from jsm28 at gcc dot gnu dot org  2009-03-31 19:47 -------
Closing 4.2 branch.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.2/4.3/4.4/4.5 regression]|[4.3/4.4/4.5 regression] ICE
                   |ICE throwing undeclared     |throwing undeclared object
                   |object                      |
   Target Milestone|4.2.5                       |4.3.4


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


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

* [Bug c++/29363] [4.3/4.4/4.5 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (14 preceding siblings ...)
  2009-03-31 19:47 ` [Bug c++/29363] [4.3/4.4/4.5 " jsm28 at gcc dot gnu dot org
@ 2009-08-04 12:35 ` rguenth at gcc dot gnu dot org
  2009-11-13 17:51 ` jason at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 20+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-08-04 12:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from rguenth at gcc dot gnu dot org  2009-08-04 12:27 -------
GCC 4.3.4 is being released, adjusting target milestone.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.4                       |4.3.5


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


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

* [Bug c++/29363] [4.3/4.4/4.5 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (15 preceding siblings ...)
  2009-08-04 12:35 ` rguenth at gcc dot gnu dot org
@ 2009-11-13 17:51 ` jason at gcc dot gnu dot org
  2009-11-13 18:47 ` jason at gcc dot gnu dot org
  2009-11-13 18:48 ` jason at gcc dot gnu dot org
  18 siblings, 0 replies; 20+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-11-13 17:51 UTC (permalink / raw)
  To: gcc-bugs



-- 

jason at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |lmillward at gcc dot gnu dot
                   |                            |org
         AssignedTo|lmillward at gcc dot gnu dot|jason at gcc dot gnu dot org
                   |org                         |
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2008-08-16 23:20:22         |2009-11-13 17:51:12
               date|                            |


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


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

* [Bug c++/29363] [4.3/4.4/4.5 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (16 preceding siblings ...)
  2009-11-13 17:51 ` jason at gcc dot gnu dot org
@ 2009-11-13 18:47 ` jason at gcc dot gnu dot org
  2009-11-13 18:48 ` jason at gcc dot gnu dot org
  18 siblings, 0 replies; 20+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-11-13 18:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from jason at gcc dot gnu dot org  2009-11-13 18:46 -------
Subject: Bug 29363

Author: jason
Date: Fri Nov 13 18:46:39 2009
New Revision: 154163

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=154163
Log:
        PR c++/29363
        * decl.c (create_implicit_typedef): Set TYPE_STUB_DECL here.
        (cxx_init_decl_processing): Not here.
        * name-lookup.c (pushtag): Or here.
        * pt.c (lookup_template_class): Or here.

Added:
    trunk/gcc/testsuite/g++.dg/template/error43.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/decl.c
    trunk/gcc/cp/name-lookup.c
    trunk/gcc/cp/pt.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/29363] [4.3/4.4/4.5 regression] ICE throwing undeclared object
  2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
                   ` (17 preceding siblings ...)
  2009-11-13 18:47 ` jason at gcc dot gnu dot org
@ 2009-11-13 18:48 ` jason at gcc dot gnu dot org
  18 siblings, 0 replies; 20+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-11-13 18:48 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from jason at gcc dot gnu dot org  2009-11-13 18:48 -------
Fixed for 4.5.


-- 

jason at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|4.3.5                       |4.5.0


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


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

end of thread, other threads:[~2009-11-13 18:48 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-10-05 23:37 [Bug c++/29363] New: [4.2 regression] ICE throwing undeclared object reichelt at gcc dot gnu dot org
2006-10-06  3:51 ` [Bug c++/29363] " pinskia at gcc dot gnu dot org
2006-10-08  2:44 ` pinskia at gcc dot gnu dot org
2006-10-15 21:18 ` mmitchel at gcc dot gnu dot org
2006-10-17 23:44 ` lmillward at gcc dot gnu dot org
2006-10-18 15:00 ` patchapp at dberlin dot org
2007-05-14 21:27 ` [Bug c++/29363] [4.2/4.3 " mmitchel at gcc dot gnu dot org
2007-07-20  3:52 ` mmitchel at gcc dot gnu dot org
2007-10-09 19:26 ` mmitchel at gcc dot gnu dot org
2007-12-21  7:29 ` steven at gcc dot gnu dot org
2008-02-01 16:55 ` jsm28 at gcc dot gnu dot org
2008-05-19 20:30 ` [Bug c++/29363] [4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
2008-08-16 23:21 ` pinskia at gcc dot gnu dot org
2008-08-16 23:23 ` pinskia at gcc dot gnu dot org
2008-08-17 12:01 ` jakub at gcc dot gnu dot org
2009-03-31 19:47 ` [Bug c++/29363] [4.3/4.4/4.5 " jsm28 at gcc dot gnu dot org
2009-08-04 12:35 ` rguenth at gcc dot gnu dot org
2009-11-13 17:51 ` jason at gcc dot gnu dot org
2009-11-13 18:47 ` jason at gcc dot gnu dot org
2009-11-13 18:48 ` jason 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).