public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/31992]  New: [4.1/4.2/4.3 regression] ICE initializing static variable of template class
@ 2007-05-18 21:52 reichelt at gcc dot gnu dot org
  2007-05-18 21:53 ` [Bug c++/31992] " reichelt at gcc dot gnu dot org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2007-05-18 21:52 UTC (permalink / raw)
  To: gcc-bugs

The following valid code snippet triggers a segfault since GCC 4.1.2:

=============================================
template<int> struct A
{
    static const int i;
};

template<int N> const int A<N>::i( A::i );
=============================================

bug.cc:6: internal compiler error: Segmentation fault
Please submit a full bug report, [etc.]


-- 
           Summary: [4.1/4.2/4.3 regression] ICE initializing static
                    variable of template class
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code, 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=31992


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

* [Bug c++/31992] [4.1/4.2/4.3 regression] ICE initializing static variable of template class
  2007-05-18 21:52 [Bug c++/31992] New: [4.1/4.2/4.3 regression] ICE initializing static variable of template class reichelt at gcc dot gnu dot org
@ 2007-05-18 21:53 ` reichelt at gcc dot gnu dot org
  2007-06-29 18:30 ` mmitchel at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2007-05-18 21:53 UTC (permalink / raw)
  To: gcc-bugs



-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.1.3


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


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

* [Bug c++/31992] [4.1/4.2/4.3 regression] ICE initializing static variable of template class
  2007-05-18 21:52 [Bug c++/31992] New: [4.1/4.2/4.3 regression] ICE initializing static variable of template class reichelt at gcc dot gnu dot org
  2007-05-18 21:53 ` [Bug c++/31992] " reichelt at gcc dot gnu dot org
@ 2007-06-29 18:30 ` mmitchel at gcc dot gnu dot org
  2007-07-05 20:05 ` brolley at redhat dot com
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-06-29 18:30 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P1


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


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

* [Bug c++/31992] [4.1/4.2/4.3 regression] ICE initializing static variable of template class
  2007-05-18 21:52 [Bug c++/31992] New: [4.1/4.2/4.3 regression] ICE initializing static variable of template class reichelt at gcc dot gnu dot org
  2007-05-18 21:53 ` [Bug c++/31992] " reichelt at gcc dot gnu dot org
  2007-06-29 18:30 ` mmitchel at gcc dot gnu dot org
@ 2007-07-05 20:05 ` brolley at redhat dot com
  2007-07-06  1:24 ` mmitchel at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: brolley at redhat dot com @ 2007-07-05 20:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from brolley at redhat dot com  2007-07-05 20:05 -------
I've worked on this a bit and just realized that it's assigned to Mark
Mitchell. However, here's what I've learned, in case it helps...

The segfault occurs in convert_for_initialization because the TREE_TYPE of rhs
is NULL_TREE. This is because the tree is a SCOPE_REF referring to A and i. The
TREE_TYPE was set to NULL_TREE because A is a dependent type. Now, it's
documented in build_qualified_name in cp/tree.c that a SCOPE_REF has NULL type
in the event that the expression represents a dependent type. However, since i
does not depend on any of the template parameters of A, I think that A::i is
not a dependent type and that the TREE_TYPE should have been set to the type of
i.


-- 


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


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

* [Bug c++/31992] [4.1/4.2/4.3 regression] ICE initializing static variable of template class
  2007-05-18 21:52 [Bug c++/31992] New: [4.1/4.2/4.3 regression] ICE initializing static variable of template class reichelt at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2007-07-05 20:05 ` brolley at redhat dot com
@ 2007-07-06  1:24 ` mmitchel at gcc dot gnu dot org
  2007-07-06  1:36 ` [Bug c++/31992] [4.1/4.2 " mmitchel at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-07-06  1:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from mmitchel at gcc dot gnu dot org  2007-07-06 01:24 -------
Subject: Bug 31992

Author: mmitchel
Date: Fri Jul  6 01:23:54 2007
New Revision: 126399

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=126399
Log:
        PR c++/32245
        * init.c (build_zero_init): Always build an initializer for
        non-static storage.
        * typeck2.c (build_functional_cast): Use build_zero_init.

        PR c++/32251
        * init.c (build_new_1): Always pass the allocation function to
        build_op_delete_call.
        * call.c (build_op_delete_call): Handle operator delete with a
        variable-argument list.  Do not issue an error when no matching
        deallocation function is available for a new operator.

        PR c++/31992
        * cp-tree.h (any_value_dependent_elements_p): Declare it.
        * decl.c (value_dependent_init_p): New function.
        (cp_finish_decl): Use it.
        * pt.c (value_dependent_expression_p): Use
        any_value_dependent_elements_p.
        * parser.c (cp_parser_primary_expression): Add comment about
        treating dependent qualified names as integral
        constant-expressions.

        PR c++/32245
        * g++.dg/init/ptrmem4.C: New test.

        PR c++/32251
        * g++.dg/init/new21.C: Likewise.

        PR c++/31992
        * g++.dg/template/static30.C: Likewise.

Added:
    trunk/gcc/testsuite/g++.dg/init/new21.C
    trunk/gcc/testsuite/g++.dg/init/ptrmem4.C
    trunk/gcc/testsuite/g++.dg/template/static30.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/call.c
    trunk/gcc/cp/cp-tree.h
    trunk/gcc/cp/decl.c
    trunk/gcc/cp/init.c
    trunk/gcc/cp/parser.c
    trunk/gcc/cp/pt.c
    trunk/gcc/cp/typeck2.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/31992] [4.1/4.2 regression] ICE initializing static variable of template class
  2007-05-18 21:52 [Bug c++/31992] New: [4.1/4.2/4.3 regression] ICE initializing static variable of template class reichelt at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2007-07-06  1:24 ` mmitchel at gcc dot gnu dot org
@ 2007-07-06  1:36 ` mmitchel at gcc dot gnu dot org
  2007-07-07  2:03 ` mmitchel at gcc dot gnu dot org
  2008-07-04 16:07 ` [Bug c++/31992] [4.1 " jsm28 at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-07-06  1:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from mmitchel at gcc dot gnu dot org  2007-07-06 01:36 -------
Fixed in 4.3.0.


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2007-07-06 01:36:26
               date|                            |
            Summary|[4.1/4.2/4.3 regression] ICE|[4.1/4.2 regression] ICE
                   |initializing static variable|initializing static variable
                   |of template class           |of template class


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


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

* [Bug c++/31992] [4.1/4.2 regression] ICE initializing static variable of template class
  2007-05-18 21:52 [Bug c++/31992] New: [4.1/4.2/4.3 regression] ICE initializing static variable of template class reichelt at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2007-07-06  1:36 ` [Bug c++/31992] [4.1/4.2 " mmitchel at gcc dot gnu dot org
@ 2007-07-07  2:03 ` mmitchel at gcc dot gnu dot org
  2008-07-04 16:07 ` [Bug c++/31992] [4.1 " jsm28 at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-07-07  2:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from mmitchel at gcc dot gnu dot org  2007-07-07 02:02 -------
Subject: Bug 31992

Author: mmitchel
Date: Sat Jul  7 02:02:37 2007
New Revision: 126433

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=126433
Log:
        PR c++/32245
        * init.c (build_zero_init): Always build an initializer for
        non-static storage.
        * typeck2.c (build_functional_cast): Use build_zero_init.

        PR c++/32251
        * init.c (build_new_1): Always pass the allocation function to
        build_op_delete_call.
        * call.c (build_op_delete_call): Handle operator delete with a
        variable-argument list.  Do not issue an error when no matching
        deallocation function is available for a new operator.

        PR c++/31992
        * cp-tree.h (any_value_dependent_elements_p): Declare it.
        * decl.c (value_dependent_init_p): New function.
        (cp_finish_decl): Use it.
        * pt.c (value_dependent_expression_p): Use
        any_value_dependent_elements_p.
        * parser.c (cp_parser_primary_expression): Add comment about
        treating dependent qualified names as integral
        constant-expressions.

        PR c++/32245
        * g++.dg/init/ptrmem4.C: New test.

        PR c++/32251
        * g++.dg/init/new21.C: Likewise.

        PR c++/31992
        * g++.dg/template/static30.C: Likewise.

Added:
    branches/gcc-4_2-branch/gcc/testsuite/g++.dg/init/new21.C
    branches/gcc-4_2-branch/gcc/testsuite/g++.dg/init/ptrmem4.C
    branches/gcc-4_2-branch/gcc/testsuite/g++.dg/template/static30.C
Modified:
    branches/gcc-4_2-branch/gcc/cp/ChangeLog
    branches/gcc-4_2-branch/gcc/cp/call.c
    branches/gcc-4_2-branch/gcc/cp/cp-tree.h
    branches/gcc-4_2-branch/gcc/cp/decl.c
    branches/gcc-4_2-branch/gcc/cp/init.c
    branches/gcc-4_2-branch/gcc/cp/parser.c
    branches/gcc-4_2-branch/gcc/cp/pt.c
    branches/gcc-4_2-branch/gcc/cp/typeck2.c
    branches/gcc-4_2-branch/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/31992] [4.1 regression] ICE initializing static variable of template class
  2007-05-18 21:52 [Bug c++/31992] New: [4.1/4.2/4.3 regression] ICE initializing static variable of template class reichelt at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2007-07-07  2:03 ` mmitchel at gcc dot gnu dot org
@ 2008-07-04 16:07 ` jsm28 at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-07-04 16:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jsm28 at gcc dot gnu dot org  2008-07-04 16:06 -------
Closing 4.1 branch.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
      Known to fail|                            |4.1.3
         Resolution|                            |FIXED
   Target Milestone|4.1.3                       |4.2.1


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


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

end of thread, other threads:[~2008-07-04 16:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-05-18 21:52 [Bug c++/31992] New: [4.1/4.2/4.3 regression] ICE initializing static variable of template class reichelt at gcc dot gnu dot org
2007-05-18 21:53 ` [Bug c++/31992] " reichelt at gcc dot gnu dot org
2007-06-29 18:30 ` mmitchel at gcc dot gnu dot org
2007-07-05 20:05 ` brolley at redhat dot com
2007-07-06  1:24 ` mmitchel at gcc dot gnu dot org
2007-07-06  1:36 ` [Bug c++/31992] [4.1/4.2 " mmitchel at gcc dot gnu dot org
2007-07-07  2:03 ` mmitchel at gcc dot gnu dot org
2008-07-04 16:07 ` [Bug c++/31992] [4.1 " jsm28 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).