public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
@ 2005-10-29  1:38 ` pinskia at gcc dot gnu dot org
  2005-10-29  1:40 ` pinskia at gcc dot gnu dot org
                   ` (25 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-29  1:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at gcc dot gnu dot org  2005-10-29 01:38 -------
I am looking to fix this (hopefully I can fix it).


-- 


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


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

* [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
  2005-10-29  1:38 ` [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class pinskia at gcc dot gnu dot org
@ 2005-10-29  1:40 ` pinskia at gcc dot gnu dot org
  2005-10-29  3:57 ` [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class in a template pinskia at gcc dot gnu dot org
                   ` (24 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-29  1:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from pinskia at gcc dot gnu dot org  2005-10-29 01:40 -------
Related to PR 12333.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  BugsThisDependsOn|                            |12333


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


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

* [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class in a template
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
  2005-10-29  1:38 ` [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class pinskia at gcc dot gnu dot org
  2005-10-29  1:40 ` pinskia at gcc dot gnu dot org
@ 2005-10-29  3:57 ` pinskia at gcc dot gnu dot org
  2005-10-29  3:59 ` [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class in a template and is dependent pinskia at gcc dot gnu dot org
                   ` (23 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-29  3:57 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from pinskia at gcc dot gnu dot org  2005-10-29 03:57 -------
Hmm, pseudo_destructor_p is not being set to true.


-- 


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


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

* [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2005-10-29  3:57 ` [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class in a template pinskia at gcc dot gnu dot org
@ 2005-10-29  3:59 ` pinskia at gcc dot gnu dot org
  2005-10-29  4:15 ` pinskia at gcc dot gnu dot org
                   ` (22 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-29  3:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from pinskia at gcc dot gnu dot org  2005-10-29 03:59 -------
The issue is this is a depedent name.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[3.4/4.0/4.1 regression]    |[3.4/4.0/4.1 regression]
                   |Explicitly invoking         |Explicitly invoking
                   |destructor of template class|destructor of template class
                   |in a template               |in a template and is
                   |                            |dependent


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


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

* [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2005-10-29  3:59 ` [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class in a template and is dependent pinskia at gcc dot gnu dot org
@ 2005-10-29  4:15 ` pinskia at gcc dot gnu dot org
  2005-10-31  4:40 ` mmitchel at gcc dot gnu dot org
                   ` (21 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-10-29  4:15 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from pinskia at gcc dot gnu dot org  2005-10-29 04:15 -------
This problem is much harder than I though but basicially there are two issues,
we need to parse A in ~A as A<T> which we don't as we require a class-type. 
The second issue is that we don't even get to the parsing of ~ because scope is
NULL as this is a dependent type.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mmitchel at gcc dot gnu dot
                   |                            |org


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


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

* [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2005-10-29  4:15 ` pinskia at gcc dot gnu dot org
@ 2005-10-31  4:40 ` mmitchel at gcc dot gnu dot org
  2006-02-24  0:26 ` [Bug c++/23287] [3.4/4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
                   ` (20 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-10-31  4:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from mmitchel at gcc dot gnu dot org  2005-10-31 04:40 -------
Leaving as P2.  I'm only 75% sure this is valid, but we should at least
investigate.


-- 


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


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

* [Bug c++/23287] [3.4/4.0/4.1/4.2 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2005-10-31  4:40 ` mmitchel at gcc dot gnu dot org
@ 2006-02-24  0:26 ` mmitchel at gcc dot gnu dot org
  2006-05-25  2:34 ` [Bug c++/23287] [4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
                   ` (19 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-02-24  0:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from mmitchel at gcc dot gnu dot org  2006-02-24 00:26 -------
This issue will not be resolved in GCC 4.1.0; retargeted at GCC 4.1.1.


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.0.3                       |4.1.1


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


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

* [Bug c++/23287] [4.0/4.1/4.2 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2006-02-24  0:26 ` [Bug c++/23287] [3.4/4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
@ 2006-05-25  2:34 ` mmitchel at gcc dot gnu dot org
  2006-08-28 17:56 ` nathan at gcc dot gnu dot org
                   ` (18 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-05-25  2:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from mmitchel at gcc dot gnu dot org  2006-05-25 02:33 -------
Will not be fixed in 4.1.1; adjust target milestone to 4.1.2.


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.1                       |4.1.2


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


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

* [Bug c++/23287] [4.0/4.1/4.2 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2006-05-25  2:34 ` [Bug c++/23287] [4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
@ 2006-08-28 17:56 ` nathan at gcc dot gnu dot org
  2006-09-01 13:46 ` nathan at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: nathan at gcc dot gnu dot org @ 2006-08-28 17:56 UTC (permalink / raw)
  To: gcc-bugs



-- 

nathan at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |nathan at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2006-08-27 21:45:45         |2006-08-28 17:56:33
               date|                            |


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


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

* [Bug c++/23287] [4.0/4.1/4.2 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2006-08-28 17:56 ` nathan at gcc dot gnu dot org
@ 2006-09-01 13:46 ` nathan at gcc dot gnu dot org
  2006-09-01 13:49 ` nathan at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: nathan at gcc dot gnu dot org @ 2006-09-01 13:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from nathan at gcc dot gnu dot org  2006-09-01 13:46 -------
Subject: Bug 23287

Author: nathan
Date: Fri Sep  1 13:46:19 2006
New Revision: 116623

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116623
Log:
cp/
        PR c++/23287
        * parser.c (cp_parser_id_expression): Add member_p
        argument. Update all callers.
        (cp_parser_unqualified_id): Likewise.  Lookup a destructor name in
        the object's scope, if valid.
        (cp_parser_global_scope_opt): Add object_scope_valid_p.  Update
        callers.
        (cp_parser_postfix_dot_deref_expression): Set object_scope.
        * pt.c (tsubst_copy_and_build): Lookup dependent dtor name here.
testsuite/
        PR c++/23287
        * g++.dg/parse/dtor12.C: New.

Added:
    trunk/gcc/testsuite/g++.dg/parse/dtor12.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/parser.c
    trunk/gcc/cp/pt.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/23287] [4.0/4.1/4.2 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2006-09-01 13:46 ` nathan at gcc dot gnu dot org
@ 2006-09-01 13:49 ` nathan at gcc dot gnu dot org
  2006-09-03 17:44 ` pinskia at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: nathan at gcc dot gnu dot org @ 2006-09-01 13:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from nathan at gcc dot gnu dot org  2006-09-01 13:49 -------
2006-09-01  Nathan Sidwell  <nathan@codesourcery.com>

        PR c++/23287
        * parser.c (cp_parser_id_expression): Add member_p
        argument. Update all callers.
        (cp_parser_unqualified_id): Likewise.  Lookup a destructor name in
        the object's scope, if valid.
        (cp_parser_global_scope_opt): Add object_scope_valid_p.  Update
        callers.
        (cp_parser_postfix_dot_deref_expression): Set object_scope.
        * pt.c (tsubst_copy_and_build): Lookup dependent dtor name here.


-- 

nathan at gcc dot gnu dot org changed:

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


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


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

* [Bug c++/23287] [4.0/4.1/4.2 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2006-09-01 13:49 ` nathan at gcc dot gnu dot org
@ 2006-09-03 17:44 ` pinskia at gcc dot gnu dot org
  2006-09-04 15:22 ` nathan at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-09-03 17:44 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

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


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


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

* [Bug c++/23287] [4.0/4.1/4.2 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (12 preceding siblings ...)
  2006-09-04 15:22 ` nathan at gcc dot gnu dot org
@ 2006-09-04 15:22 ` nathan at gcc dot gnu dot org
  2006-09-09 21:37 ` pinskia at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: nathan at gcc dot gnu dot org @ 2006-09-04 15:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from nathan at gcc dot gnu dot org  2006-09-04 15:22 -------
I have reverted this patch.


-- 

nathan at gcc dot gnu dot org changed:

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


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


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

* [Bug c++/23287] [4.0/4.1/4.2 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (11 preceding siblings ...)
  2006-09-03 17:44 ` pinskia at gcc dot gnu dot org
@ 2006-09-04 15:22 ` nathan at gcc dot gnu dot org
  2006-09-04 15:22 ` nathan at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: nathan at gcc dot gnu dot org @ 2006-09-04 15:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from nathan at gcc dot gnu dot org  2006-09-04 15:22 -------
Subject: Bug 23287

Author: nathan
Date: Mon Sep  4 15:21:50 2006
New Revision: 116679

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=116679
Log:
cp/
        PR 23287 Revert my 2006-09-01 patch.
        * parser.c: Reverted.
        * pt.c: Reverted.
testsuite/
        PR c++/23287 Revert my 2006-09-01 patch
        * g++.dg/parse/dtor12.C: Remove.

Removed:
    trunk/gcc/testsuite/g++.dg/parse/dtor12.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/parser.c
    trunk/gcc/cp/pt.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/23287] [4.0/4.1/4.2 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (13 preceding siblings ...)
  2006-09-04 15:22 ` nathan at gcc dot gnu dot org
@ 2006-09-09 21:37 ` pinskia at gcc dot gnu dot org
  2007-05-14 21:26 ` [Bug c++/23287] [4.0/4.1/4.2/4.3 " mmitchel at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-09-09 21:37 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from pinskia at gcc dot gnu dot org  2006-09-09 21:37 -------
(In reply to comment #14)
> I have reverted this patch.
I think PR 28985 is related to this bug in that it is about the accepting the
invalid code which was mentioned on the mailing list.


-- 


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


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

* [Bug c++/23287] [4.0/4.1/4.2/4.3 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (14 preceding siblings ...)
  2006-09-09 21:37 ` pinskia at gcc dot gnu dot org
@ 2007-05-14 21:26 ` mmitchel at gcc dot gnu dot org
  2007-07-20  3:47 ` mmitchel at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-05-14 21:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from mmitchel at gcc dot gnu dot org  2007-05-14 22:25 -------
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=23287


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

* [Bug c++/23287] [4.0/4.1/4.2/4.3 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (15 preceding siblings ...)
  2007-05-14 21:26 ` [Bug c++/23287] [4.0/4.1/4.2/4.3 " mmitchel at gcc dot gnu dot org
@ 2007-07-20  3:47 ` mmitchel at gcc dot gnu dot org
  2007-10-09 19:26 ` mmitchel at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-07-20  3:47 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=23287


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

* [Bug c++/23287] [4.0/4.1/4.2/4.3 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (16 preceding siblings ...)
  2007-07-20  3:47 ` mmitchel at gcc dot gnu dot org
@ 2007-10-09 19:26 ` mmitchel at gcc dot gnu dot org
  2008-02-01 16:54 ` jsm28 at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-10-09 19:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from mmitchel at gcc dot gnu dot org  2007-10-09 19:20 -------
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=23287


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

* [Bug c++/23287] [4.0/4.1/4.2/4.3 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (17 preceding siblings ...)
  2007-10-09 19:26 ` mmitchel at gcc dot gnu dot org
@ 2008-02-01 16:54 ` jsm28 at gcc dot gnu dot org
  2008-05-19 20:24 ` [Bug c++/23287] [4.1/4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-02-01 16:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #18 from jsm28 at gcc dot gnu dot org  2008-02-01 16:52 -------
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=23287


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

* [Bug c++/23287] [4.1/4.2/4.3/4.4 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (18 preceding siblings ...)
  2008-02-01 16:54 ` jsm28 at gcc dot gnu dot org
@ 2008-05-19 20:24 ` jsm28 at gcc dot gnu dot org
  2008-07-04 22:47 ` [Bug c++/23287] [4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-05-19 20:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #19 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=23287


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

* [Bug c++/23287] [4.2/4.3/4.4 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (19 preceding siblings ...)
  2008-05-19 20:24 ` [Bug c++/23287] [4.1/4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
@ 2008-07-04 22:47 ` jsm28 at gcc dot gnu dot org
  2008-11-03 10:47 ` manu at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-07-04 22:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #20 from jsm28 at gcc dot gnu dot org  2008-07-04 22:46 -------
Closing 4.1 branch.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.1/4.2/4.3/4.4 regression]|[4.2/4.3/4.4 regression]
                   |Explicitly invoking         |Explicitly invoking
                   |destructor of template class|destructor of template class
                   |in a template and is        |in a template and is
                   |dependent                   |dependent


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


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

* [Bug c++/23287] [4.2/4.3/4.4 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (20 preceding siblings ...)
  2008-07-04 22:47 ` [Bug c++/23287] [4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
@ 2008-11-03 10:47 ` manu at gcc dot gnu dot org
  2009-01-19 19:45 ` jason at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: manu at gcc dot gnu dot org @ 2008-11-03 10:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #21 from manu at gcc dot gnu dot org  2008-11-03 10:46 -------
Nathan, are you working on this?


-- 

manu at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu dot org


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


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

* [Bug c++/23287] [4.2/4.3/4.4 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (21 preceding siblings ...)
  2008-11-03 10:47 ` manu at gcc dot gnu dot org
@ 2009-01-19 19:45 ` jason at gcc dot gnu dot org
  2009-01-19 22:51 ` jason at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-01-19 19:45 UTC (permalink / raw)
  To: gcc-bugs



-- 

jason at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|nathan at gcc dot gnu dot   |jason at gcc dot gnu dot org
                   |org                         |
             Status|REOPENED                    |ASSIGNED
   Last reconfirmed|2006-08-28 17:56:33         |2009-01-19 19:44:51
               date|                            |


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


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

* [Bug c++/23287] [4.2/4.3/4.4 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (22 preceding siblings ...)
  2009-01-19 19:45 ` jason at gcc dot gnu dot org
@ 2009-01-19 22:51 ` jason at gcc dot gnu dot org
  2009-01-19 23:05 ` [Bug c++/23287] [4.2/4.3 " jason at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  26 siblings, 0 replies; 27+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-01-19 22:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #22 from jason at gcc dot gnu dot org  2009-01-19 22:50 -------
Subject: Bug 23287

Author: jason
Date: Mon Jan 19 22:50:43 2009
New Revision: 143502

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=143502
Log:
        PR c++/23287
        * parser.c (cp_parser_unqualified_id): In a template,
        accept ~identifier.
        * typeck.c (lookup_destructor): Handle IDENTIFIER_NODE.

Added:
    trunk/gcc/testsuite/g++.dg/template/dtor5.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/parser.c
    trunk/gcc/cp/typeck.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/23287] [4.2/4.3 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (23 preceding siblings ...)
  2009-01-19 22:51 ` jason at gcc dot gnu dot org
@ 2009-01-19 23:05 ` jason at gcc dot gnu dot org
  2009-01-26 18:25 ` jason at gcc dot gnu dot org
  2009-02-10 17:51 ` [Bug c++/23287] [4.2 " jason at gcc dot gnu dot org
  26 siblings, 0 replies; 27+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-01-19 23:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #23 from jason at gcc dot gnu dot org  2009-01-19 23:05 -------
Fixed for 4.4.


-- 

jason at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|3.3.4                       |3.3.4 4.4.0
            Summary|[4.2/4.3/4.4 regression]    |[4.2/4.3 regression]
                   |Explicitly invoking         |Explicitly invoking
                   |destructor of template class|destructor of template class
                   |in a template and is        |in a template and is
                   |dependent                   |dependent


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


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

* [Bug c++/23287] [4.2/4.3 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (24 preceding siblings ...)
  2009-01-19 23:05 ` [Bug c++/23287] [4.2/4.3 " jason at gcc dot gnu dot org
@ 2009-01-26 18:25 ` jason at gcc dot gnu dot org
  2009-02-10 17:51 ` [Bug c++/23287] [4.2 " jason at gcc dot gnu dot org
  26 siblings, 0 replies; 27+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-01-26 18:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #24 from jason at gcc dot gnu dot org  2009-01-26 18:24 -------
Subject: Bug 23287

Author: jason
Date: Mon Jan 26 18:24:45 2009
New Revision: 143682

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=143682
Log:
        PR c++/23287
        * parser.c (cp_parser_unqualified_id): In a template,
        accept ~identifier.
        * typeck.c (lookup_destructor): Handle IDENTIFIER_NODE.

Added:
    branches/gcc-4_3-branch/gcc/testsuite/g++.dg/template/dtor5.C
      - copied unchanged from r143502,
trunk/gcc/testsuite/g++.dg/template/dtor5.C
Modified:
    branches/gcc-4_3-branch/gcc/cp/ChangeLog
    branches/gcc-4_3-branch/gcc/cp/parser.c
    branches/gcc-4_3-branch/gcc/cp/typeck.c
    branches/gcc-4_3-branch/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/23287] [4.2 regression] Explicitly invoking destructor of template class in a template and is dependent
       [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
                   ` (25 preceding siblings ...)
  2009-01-26 18:25 ` jason at gcc dot gnu dot org
@ 2009-02-10 17:51 ` jason at gcc dot gnu dot org
  26 siblings, 0 replies; 27+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-02-10 17:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #25 from jason at gcc dot gnu dot org  2009-02-10 17:51 -------
fixed for 4.3 as well, closing.


-- 

jason at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
      Known to work|3.3.4 4.4.0                 |3.3.4 4.4.0 4.3.4
         Resolution|                            |FIXED
            Summary|[4.2/4.3 regression]        |[4.2 regression] Explicitly
                   |Explicitly invoking         |invoking destructor of
                   |destructor of template class|template class in a template
                   |in a template and is        |and is dependent
                   |dependent                   |


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


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

end of thread, other threads:[~2009-02-10 17:51 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-23287-11135@http.gcc.gnu.org/bugzilla/>
2005-10-29  1:38 ` [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class pinskia at gcc dot gnu dot org
2005-10-29  1:40 ` pinskia at gcc dot gnu dot org
2005-10-29  3:57 ` [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class in a template pinskia at gcc dot gnu dot org
2005-10-29  3:59 ` [Bug c++/23287] [3.4/4.0/4.1 regression] Explicitly invoking destructor of template class in a template and is dependent pinskia at gcc dot gnu dot org
2005-10-29  4:15 ` pinskia at gcc dot gnu dot org
2005-10-31  4:40 ` mmitchel at gcc dot gnu dot org
2006-02-24  0:26 ` [Bug c++/23287] [3.4/4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
2006-05-25  2:34 ` [Bug c++/23287] [4.0/4.1/4.2 " mmitchel at gcc dot gnu dot org
2006-08-28 17:56 ` nathan at gcc dot gnu dot org
2006-09-01 13:46 ` nathan at gcc dot gnu dot org
2006-09-01 13:49 ` nathan at gcc dot gnu dot org
2006-09-03 17:44 ` pinskia at gcc dot gnu dot org
2006-09-04 15:22 ` nathan at gcc dot gnu dot org
2006-09-04 15:22 ` nathan at gcc dot gnu dot org
2006-09-09 21:37 ` pinskia at gcc dot gnu dot org
2007-05-14 21:26 ` [Bug c++/23287] [4.0/4.1/4.2/4.3 " mmitchel at gcc dot gnu dot org
2007-07-20  3:47 ` mmitchel at gcc dot gnu dot org
2007-10-09 19:26 ` mmitchel at gcc dot gnu dot org
2008-02-01 16:54 ` jsm28 at gcc dot gnu dot org
2008-05-19 20:24 ` [Bug c++/23287] [4.1/4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
2008-07-04 22:47 ` [Bug c++/23287] [4.2/4.3/4.4 " jsm28 at gcc dot gnu dot org
2008-11-03 10:47 ` manu at gcc dot gnu dot org
2009-01-19 19:45 ` jason at gcc dot gnu dot org
2009-01-19 22:51 ` jason at gcc dot gnu dot org
2009-01-19 23:05 ` [Bug c++/23287] [4.2/4.3 " jason at gcc dot gnu dot org
2009-01-26 18:25 ` jason at gcc dot gnu dot org
2009-02-10 17:51 ` [Bug c++/23287] [4.2 " 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).