public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/27819]  New: [4.0/4.1/4.2 regression] ICE casting static const variables
@ 2006-05-30 12:23 reichelt at gcc dot gnu dot org
  2006-05-30 13:50 ` [Bug c++/27819] " pinskia at gcc dot gnu dot org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2006-05-30 12:23 UTC (permalink / raw)
  To: gcc-bugs

The following valid code snippet causes an ICE since GCC 4.0.0
(it was wrongly rejected in GCC 3.4.x):

======================================
struct A
{
    static const char i = 1;
};

template<int> struct B
{
    static const int j = A::i;
    int x[int(j)];
};

B<0> b;
======================================

bug.cc:9: internal compiler error: in build_c_cast, at cp/typeck.c:5252
Please submit a full bug report, [etc.]

This is related to PR 26266.


-- 
           Summary: [4.0/4.1/4.2 regression] ICE casting static const
                    variables
           Product: gcc
           Version: 4.2.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=27819


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

* [Bug c++/27819] [4.0/4.1/4.2 regression] ICE casting static const variables
  2006-05-30 12:23 [Bug c++/27819] New: [4.0/4.1/4.2 regression] ICE casting static const variables reichelt at gcc dot gnu dot org
@ 2006-05-30 13:50 ` pinskia at gcc dot gnu dot org
  2006-05-31  2:32 ` bangerth at dealii dot org
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-05-30 13:50 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.0.4


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


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

* [Bug c++/27819] [4.0/4.1/4.2 regression] ICE casting static const variables
  2006-05-30 12:23 [Bug c++/27819] New: [4.0/4.1/4.2 regression] ICE casting static const variables reichelt at gcc dot gnu dot org
  2006-05-30 13:50 ` [Bug c++/27819] " pinskia at gcc dot gnu dot org
@ 2006-05-31  2:32 ` bangerth at dealii dot org
  2006-05-31 20:35 ` mmitchel at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: bangerth at dealii dot org @ 2006-05-31  2:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from bangerth at dealii dot org  2006-05-31 02:31 -------
I confirm the ICE with 4.0.x. With 4.1.x, we get a duplicate error message:

g/x> /home/bangerth/bin/gcc-4.1-pre/bin/c++ -c x.cc
x.cc:12: error: variable-size type declared outside of any function
x.cc:12: error: variable-size type declared outside of any function

I'm not completely sure whether the testcase is invalid (I suppose the cast
can not be part of a constant expression). icc accepts the code.

W.


-- 

bangerth at dealii dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bangerth at dealii dot org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-05-31 02:31:57
               date|                            |


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


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

* [Bug c++/27819] [4.0/4.1/4.2 regression] ICE casting static const variables
  2006-05-30 12:23 [Bug c++/27819] New: [4.0/4.1/4.2 regression] ICE casting static const variables reichelt at gcc dot gnu dot org
  2006-05-30 13:50 ` [Bug c++/27819] " pinskia at gcc dot gnu dot org
  2006-05-31  2:32 ` bangerth at dealii dot org
@ 2006-05-31 20:35 ` mmitchel at gcc dot gnu dot org
  2006-06-04 19:42 ` mmitchel at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-05-31 20:35 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |mark at codesourcery dot com
                   |dot org                     |
             Status|NEW                         |ASSIGNED


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


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

* [Bug c++/27819] [4.0/4.1/4.2 regression] ICE casting static const variables
  2006-05-30 12:23 [Bug c++/27819] New: [4.0/4.1/4.2 regression] ICE casting static const variables reichelt at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2006-05-31 20:35 ` mmitchel at gcc dot gnu dot org
@ 2006-06-04 19:42 ` mmitchel at gcc dot gnu dot org
  2006-06-05  2:47 ` mmitchel at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-06-04 19:42 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=27819


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

* [Bug c++/27819] [4.0/4.1/4.2 regression] ICE casting static const variables
  2006-05-30 12:23 [Bug c++/27819] New: [4.0/4.1/4.2 regression] ICE casting static const variables reichelt at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2006-06-04 19:42 ` mmitchel at gcc dot gnu dot org
@ 2006-06-05  2:47 ` mmitchel at gcc dot gnu dot org
  2006-06-05  2:52 ` mmitchel at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-06-05  2:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from mmitchel at gcc dot gnu dot org  2006-06-05 02:46 -------
Subject: Bug 27819

Author: mmitchel
Date: Mon Jun  5 02:46:38 2006
New Revision: 114382

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=114382
Log:
        PR c++/27819
        * decl.c (cp_finish_decl): Process initializers for static data
        members with non-dependent initializers, even in templates.
        PR c++/27722
        * decl.c (maybe_deduce_size_from_array_init): If the declaration
        is erroneous, give it an erroneous type.
        (layout_var_decl): If the type is erroneous, give up.
        (check_initializer): Likewise.
        PR c++/27807
        * cp-tree.h (TYPE_OBJ_P): New macro.
        (TYPE_PTROB_P): Use it.
        (TYPE_REF_OBJ_P): Likewise.
        * semantics.c (finish_compound_literal): Do not permit compound
        literals of non-object types.
        PR c++/27806
        * typeck.c (original_type): Robustify.
        PR c++/27819
        * g++.dg/template/static25.C: New test.
        PR c++/27722
        * g++.dg/init/array21.C: New test.
        PR c++/27807
        * g++.dg/ext/complit7.C: New test.

        PR c++/27806
        * g++.dg/parse/ptrmem5.C: New test.

Added:
    trunk/gcc/testsuite/g++.dg/ext/complit7.C
    trunk/gcc/testsuite/g++.dg/init/array21.C
    trunk/gcc/testsuite/g++.dg/parse/ptrmem5.C
    trunk/gcc/testsuite/g++.dg/template/static25.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/cp-tree.h
    trunk/gcc/cp/decl.c
    trunk/gcc/cp/semantics.c
    trunk/gcc/cp/typeck.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/27819] [4.0/4.1/4.2 regression] ICE casting static const variables
  2006-05-30 12:23 [Bug c++/27819] New: [4.0/4.1/4.2 regression] ICE casting static const variables reichelt at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2006-06-05  2:47 ` mmitchel at gcc dot gnu dot org
@ 2006-06-05  2:52 ` mmitchel at gcc dot gnu dot org
  2006-06-05  2:53 ` mmitchel at gcc dot gnu dot org
  2007-02-03 17:27 ` [Bug c++/27819] [4.0 " gdr at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-06-05  2:52 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from mmitchel at gcc dot gnu dot org  2006-06-05 02:52 -------
Subject: Bug 27819

Author: mmitchel
Date: Mon Jun  5 02:52:37 2006
New Revision: 114383

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=114383
Log:
        PR c++/27819
        * decl.c (cp_finish_decl): Process initializers for static data
        members with non-dependent initializers, even in templates.
        PR c++/27722
        * decl.c (maybe_deduce_size_from_array_init): If the declaration
        is erroneous, give it an erroneous type.
        (layout_var_decl): If the type is erroneous, give up.
        (check_initializer): Likewise.
        PR c++/27807
        * cp-tree.h (TYPE_OBJ_P): New macro.
        (TYPE_PTROB_P): Use it.
        (TYPE_REF_OBJ_P): Likewise.
        * semantics.c (finish_compound_literal): Do not permit compound
        literals of non-object types.
        PR c++/27806
        * typeck.c (original_type): Robustify.
        PR c++/27819
        * g++.dg/template/static25.C: New test.
        PR c++/27722
        * g++.dg/init/array21.C: New test.
        PR c++/27807
        * g++.dg/ext/complit7.C: New test.

        PR c++/27806
        * g++.dg/parse/ptrmem5.C: New test.

Added:
    branches/gcc-4_1-branch/gcc/testsuite/g++.dg/ext/complit7.C
    branches/gcc-4_1-branch/gcc/testsuite/g++.dg/init/array21.C
    branches/gcc-4_1-branch/gcc/testsuite/g++.dg/parse/ptrmem5.C
    branches/gcc-4_1-branch/gcc/testsuite/g++.dg/template/static25.C
Modified:
    branches/gcc-4_1-branch/gcc/cp/ChangeLog
    branches/gcc-4_1-branch/gcc/cp/cp-tree.h
    branches/gcc-4_1-branch/gcc/cp/decl.c
    branches/gcc-4_1-branch/gcc/cp/semantics.c
    branches/gcc-4_1-branch/gcc/cp/typeck.c
    branches/gcc-4_1-branch/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/27819] [4.0/4.1/4.2 regression] ICE casting static const variables
  2006-05-30 12:23 [Bug c++/27819] New: [4.0/4.1/4.2 regression] ICE casting static const variables reichelt at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2006-06-05  2:52 ` mmitchel at gcc dot gnu dot org
@ 2006-06-05  2:53 ` mmitchel at gcc dot gnu dot org
  2007-02-03 17:27 ` [Bug c++/27819] [4.0 " gdr at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-06-05  2:53 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from mmitchel at gcc dot gnu dot org  2006-06-05 02:53 -------
Fixed in 4.1.2, 4.2.0.


-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|mark at codesourcery dot com|unassigned at gcc dot gnu
                   |                            |dot org
             Status|ASSIGNED                    |NEW


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


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

* [Bug c++/27819] [4.0 regression] ICE casting static const variables
  2006-05-30 12:23 [Bug c++/27819] New: [4.0/4.1/4.2 regression] ICE casting static const variables reichelt at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2006-06-05  2:53 ` mmitchel at gcc dot gnu dot org
@ 2007-02-03 17:27 ` gdr at gcc dot gnu dot org
  7 siblings, 0 replies; 9+ messages in thread
From: gdr at gcc dot gnu dot org @ 2007-02-03 17:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from gdr at gcc dot gnu dot org  2007-02-03 17:27 -------
Fixed in GCC-4.1.2


-- 

gdr at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|4.0.4                       |4.1.2


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


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

end of thread, other threads:[~2007-02-03 17:27 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-30 12:23 [Bug c++/27819] New: [4.0/4.1/4.2 regression] ICE casting static const variables reichelt at gcc dot gnu dot org
2006-05-30 13:50 ` [Bug c++/27819] " pinskia at gcc dot gnu dot org
2006-05-31  2:32 ` bangerth at dealii dot org
2006-05-31 20:35 ` mmitchel at gcc dot gnu dot org
2006-06-04 19:42 ` mmitchel at gcc dot gnu dot org
2006-06-05  2:47 ` mmitchel at gcc dot gnu dot org
2006-06-05  2:52 ` mmitchel at gcc dot gnu dot org
2006-06-05  2:53 ` mmitchel at gcc dot gnu dot org
2007-02-03 17:27 ` [Bug c++/27819] [4.0 " gdr 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).