public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/24791]  New: ICE on invalid instantiation of template's static member
@ 2005-11-11  9:43 michael dot haubenwallner at salomon dot at
  2005-11-17 10:39 ` [Bug c++/24791] " reichelt at gcc dot gnu dot org
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: michael dot haubenwallner at salomon dot at @ 2005-11-11  9:43 UTC (permalink / raw)
  To: gcc-bugs

tracked down sample is:

$ cat xx.cc

template < int I >
struct A
{
        int get_val() const;

        static int val_;
};

template< int I >
int A<I>::get_val() const
{
        return val_;
}

template< int I >    // this is invalid: works with "template <>"
int A<0>::val_(0);

// must instantiate to get ICE
template class A<0>;


$ g++ -v
Reading specs from
/tools/snapshot/toolsbox-3.5.1.4pre.20051110/bin/../lib/gcc/i686-pc-linux-gnu/3.4.4/specs
Configured with:
/tools/snapshot/src/sapc154/toolsbox-3.5.1.4pre.20051110/buildroot/gcc/gcc-3.4.4/configure
--with-gnu-as --with-gnu-ld --enable-threads=posix
--with-as=/tools/snapshot/toolsbox-3.5.1.4pre.20051110//i686-pc-linux-gnu/bin/as
--with-ld=/tools/snapshot/toolsbox-3.5.1.4pre.20051110//i686-pc-linux-gnu/bin/ld
--with-local-prefix=/tools/snapshot/toolsbox-3.5.1.4pre.20051110/ --disable-nls
--prefix=/tools/snapshot/toolsbox-3.5.1.4pre.20051110/
Thread model: posix
gcc version 3.4.4

$ g++ -v -c xx.cc
Reading specs from
/tools/snapshot/toolsbox-3.5.1.4pre.20051110/bin/../lib/gcc/i686-pc-linux-gnu/3.4.4/specs
Configured with:
/tools/snapshot/src/sapc154/toolsbox-3.5.1.4pre.20051110/buildroot/gcc/gcc-3.4.4/configure
--with-gnu-as --with-gnu-ld --enable-threads=posix
--with-as=/tools/snapshot/toolsbox-3.5.1.4pre.20051110//i686-pc-linux-gnu/bin/as
--with-ld=/tools/snapshot/toolsbox-3.5.1.4pre.20051110//i686-pc-linux-gnu/bin/ld
--with-local-prefix=/tools/snapshot/toolsbox-3.5.1.4pre.20051110/ --disable-nls
--prefix=/tools/snapshot/toolsbox-3.5.1.4pre.20051110/
Thread model: posix
gcc version 3.4.4

/tools/snapshot/toolsbox-3.5.1.4pre.20051110/bin/../libexec/gcc/i686-pc-linux-gnu/3.4.4/cc1plus
-quiet -v -iprefix
/tools/snapshot/toolsbox-3.5.1.4pre.20051110/bin/../lib/gcc/i686-pc-linux-gnu/3.4.4/
-D_GNU_SOURCE xx.cc -quiet -dumpbase xx.cc -mtune=pentiumpro -auxbase xx
-version -o /tmp/ccuQDWYE.s
ignoring nonexistent directory
"/tools/snapshot/toolsbox-3.5.1.4pre.20051110/bin/../lib/gcc/i686-pc-linux-gnu/3.4.4/../../../../i686-pc-linux-gnu/include"
ignoring duplicate directory
"/tools/snapshot/toolsbox-3.5.1.4pre.20051110//lib/gcc/i686-pc-linux-gnu/3.4.4/../../../../include/c++/3.4.4"
ignoring duplicate directory
"/tools/snapshot/toolsbox-3.5.1.4pre.20051110//lib/gcc/i686-pc-linux-gnu/3.4.4/../../../../include/c++/3.4.4/i686-pc-linux-gnu"
ignoring duplicate directory
"/tools/snapshot/toolsbox-3.5.1.4pre.20051110//lib/gcc/i686-pc-linux-gnu/3.4.4/../../../../include/c++/3.4.4/backward"
ignoring duplicate directory
"/tools/snapshot/toolsbox-3.5.1.4pre.20051110//lib/gcc/i686-pc-linux-gnu/3.4.4/include"
ignoring nonexistent directory
"/tools/snapshot/toolsbox-3.5.1.4pre.20051110//lib/gcc/i686-pc-linux-gnu/3.4.4/../../../../i686-pc-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:

/tools/snapshot/toolsbox-3.5.1.4pre.20051110/bin/../lib/gcc/i686-pc-linux-gnu/3.4.4/../../../../include/c++/3.4.4

/tools/snapshot/toolsbox-3.5.1.4pre.20051110/bin/../lib/gcc/i686-pc-linux-gnu/3.4.4/../../../../include/c++/3.4.4/i686-pc-linux-gnu

/tools/snapshot/toolsbox-3.5.1.4pre.20051110/bin/../lib/gcc/i686-pc-linux-gnu/3.4.4/../../../../include/c++/3.4.4/backward

/tools/snapshot/toolsbox-3.5.1.4pre.20051110/bin/../lib/gcc/i686-pc-linux-gnu/3.4.4/include
 /tools/snapshot/toolsbox-3.5.1.4pre.20051110//include
 /usr/include
End of search list.
GNU C++ version 3.4.4 (i686-pc-linux-gnu)
        compiled by GNU C version 3.4.4.
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
xx.cc:18: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.


-- 
           Summary: ICE on invalid instantiation of template's static member
           Product: gcc
           Version: 3.4.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: michael dot haubenwallner at salomon dot at
 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=24791


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
@ 2005-11-17 10:39 ` reichelt at gcc dot gnu dot org
  2006-07-12 16:14 ` reichelt at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-11-17 10:39 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from reichelt at gcc dot gnu dot org  2005-11-17 10:39 -------
Confirmed.

The following code snippet causes an ICE since 2.95.3
with the exception of 4.0.0 - 4.0.2:

==================================
template<int> struct A
{
    static int i;
    A() { ++i; }
};

template<int> int A<0>::i(0);

A<0> a;
==================================

The following variation causes an ICE since 4.0.0 (and before 3.1)
and is accepted by GCC 3.1 - 3.4.5:

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

template<int> int A<0>::i(0);
==================================


-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |reichelt at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |accepts-invalid, monitored
      Known to fail|2.95.3 3.0.4                |
   Last reconfirmed|0000-00-00 00:00:00         |2005-11-17 10:39:17
               date|                            |


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
  2005-11-17 10:39 ` [Bug c++/24791] " reichelt at gcc dot gnu dot org
@ 2006-07-12 16:14 ` reichelt at gcc dot gnu dot org
  2006-08-15 19:07 ` reichelt at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2006-07-12 16:14 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from reichelt at gcc dot gnu dot org  2006-07-12 16:14 -------
*** Bug 28316 has been marked as a duplicate of this bug. ***


-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |debian-gcc at lists dot
                   |                            |debian dot org


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
  2005-11-17 10:39 ` [Bug c++/24791] " reichelt at gcc dot gnu dot org
  2006-07-12 16:14 ` reichelt at gcc dot gnu dot org
@ 2006-08-15 19:07 ` reichelt at gcc dot gnu dot org
  2006-08-30  9:43 ` rguenth at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2006-08-15 19:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from reichelt at gcc dot gnu dot org  2006-08-15 19:07 -------
Btw, the ICE for the second testcase in comment #1 happens in
instantiate_decl, at cp/pt.c:11875


-- 


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (2 preceding siblings ...)
  2006-08-15 19:07 ` reichelt at gcc dot gnu dot org
@ 2006-08-30  9:43 ` rguenth at gcc dot gnu dot org
  2006-12-16 20:28 ` pinskia at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-08-30  9:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from rguenth at gcc dot gnu dot org  2006-08-30 09:43 -------
*** Bug 28897 has been marked as a duplicate of this bug. ***


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sbilyk at gmail dot com


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (3 preceding siblings ...)
  2006-08-30  9:43 ` rguenth at gcc dot gnu dot org
@ 2006-12-16 20:28 ` pinskia at gcc dot gnu dot org
  2007-02-09  0:32 ` reichelt at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-12-16 20:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from pinskia at gcc dot gnu dot org  2006-12-16 20:28 -------
*** Bug 30234 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ps dot report at gmx dot net


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (4 preceding siblings ...)
  2006-12-16 20:28 ` pinskia at gcc dot gnu dot org
@ 2007-02-09  0:32 ` reichelt at gcc dot gnu dot org
  2007-02-09  0:34 ` reichelt at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2007-02-09  0:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from reichelt at gcc dot gnu dot org  2007-02-09 00:32 -------
Comment #3 is not quite correct:

The ICE for the first testcase in comment #1 is in
instantiate_decl, at cp/pt.c:12204

The ICE for the second testcase in comment #1 is in
import_export_decl, at cp/decl2.c:1956


-- 


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (5 preceding siblings ...)
  2007-02-09  0:32 ` reichelt at gcc dot gnu dot org
@ 2007-02-09  0:34 ` reichelt at gcc dot gnu dot org
  2007-02-09  0:35 ` reichelt at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2007-02-09  0:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from reichelt at gcc dot gnu dot org  2007-02-09 00:33 -------
*** Bug 30722 has been marked as a duplicate of this bug. ***


-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |v dot haisman at sh dot cvut
                   |                            |dot cz


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (6 preceding siblings ...)
  2007-02-09  0:34 ` reichelt at gcc dot gnu dot org
@ 2007-02-09  0:35 ` reichelt at gcc dot gnu dot org
  2007-06-12 19:03 ` pinskia at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2007-02-09  0:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from reichelt at gcc dot gnu dot org  2007-02-09 00:34 -------
*** Bug 30721 has been marked as a duplicate of this bug. ***


-- 


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (7 preceding siblings ...)
  2007-02-09  0:35 ` reichelt at gcc dot gnu dot org
@ 2007-06-12 19:03 ` pinskia at gcc dot gnu dot org
  2007-08-11 11:28 ` pinskia at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-06-12 19:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from pinskia at gcc dot gnu dot org  2007-06-12 19:02 -------
*** Bug 32308 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |cxcxcxcx at gmail dot com


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (8 preceding siblings ...)
  2007-06-12 19:03 ` pinskia at gcc dot gnu dot org
@ 2007-08-11 11:28 ` pinskia at gcc dot gnu dot org
  2007-08-16 21:01 ` pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-08-11 11:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from pinskia at gcc dot gnu dot org  2007-08-11 11:27 -------
*** Bug 33046 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gcc-bugzilla at waba dot be


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (9 preceding siblings ...)
  2007-08-11 11:28 ` pinskia at gcc dot gnu dot org
@ 2007-08-16 21:01 ` pinskia at gcc dot gnu dot org
  2007-10-26 19:54 ` jason at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-08-16 21:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from pinskia at gcc dot gnu dot org  2007-08-16 21:01 -------
*** Bug 33093 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ian at airs dot com


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (10 preceding siblings ...)
  2007-08-16 21:01 ` pinskia at gcc dot gnu dot org
@ 2007-10-26 19:54 ` jason at gcc dot gnu dot org
  2007-10-28 21:27 ` reichelt at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: jason at gcc dot gnu dot org @ 2007-10-26 19:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from jason at gcc dot gnu dot org  2007-10-26 19:54 -------
Subject: Bug 24791

Author: jason
Date: Fri Oct 26 19:54:10 2007
New Revision: 129660

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=129660
Log:
        PR c++/24791
        * pt.c (get_template_info): New fn.
        (template_class_depth): Use it.
        (push_template_decl_real): Check that the template args of the
        definition match the args of the previous declaration.

Added:
    trunk/gcc/testsuite/g++.dg/template/error33.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/cp-tree.h
    trunk/gcc/cp/pt.c
    trunk/gcc/testsuite/g++.old-deja/g++.pt/crash11.C


-- 


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (11 preceding siblings ...)
  2007-10-26 19:54 ` jason at gcc dot gnu dot org
@ 2007-10-28 21:27 ` reichelt at gcc dot gnu dot org
  2007-10-28 21:31 ` reichelt at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2007-10-28 21:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from reichelt at gcc dot gnu dot org  2007-10-28 21:27 -------
Fixed by Jason's patch.


-- 

reichelt at gcc dot gnu dot org changed:

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


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (12 preceding siblings ...)
  2007-10-28 21:27 ` reichelt at gcc dot gnu dot org
@ 2007-10-28 21:31 ` reichelt at gcc dot gnu dot org
  2007-12-12 23:25 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2007-10-28 21:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from reichelt at gcc dot gnu dot org  2007-10-28 21:31 -------
*** Bug 20133 has been marked as a duplicate of this bug. ***


-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jean-marc dot valin at
                   |                            |usherbrooke dot ca


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (13 preceding siblings ...)
  2007-10-28 21:31 ` reichelt at gcc dot gnu dot org
@ 2007-12-12 23:25 ` pinskia at gcc dot gnu dot org
  2008-01-17  3:07 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-12-12 23:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from pinskia at gcc dot gnu dot org  2007-12-12 23:24 -------
*** Bug 34447 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |keelar at gmail dot com


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (14 preceding siblings ...)
  2007-12-12 23:25 ` pinskia at gcc dot gnu dot org
@ 2008-01-17  3:07 ` pinskia at gcc dot gnu dot org
  2008-02-13 17:34 ` pinskia at gcc dot gnu dot org
  2008-12-30  1:21 ` reichelt at gcc dot gnu dot org
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-01-17  3:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from pinskia at gcc dot gnu dot org  2008-01-17 02:19 -------
*** Bug 34822 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |wsf at fultondesigns dot co
                   |                            |dot uk


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (15 preceding siblings ...)
  2008-01-17  3:07 ` pinskia at gcc dot gnu dot org
@ 2008-02-13 17:34 ` pinskia at gcc dot gnu dot org
  2008-12-30  1:21 ` reichelt at gcc dot gnu dot org
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-02-13 17:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from pinskia at gcc dot gnu dot org  2008-02-13 17:33 -------
*** Bug 35181 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kltstallard at gmail dot com


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


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

* [Bug c++/24791] ICE on invalid instantiation of template's static member
  2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
                   ` (16 preceding siblings ...)
  2008-02-13 17:34 ` pinskia at gcc dot gnu dot org
@ 2008-12-30  1:21 ` reichelt at gcc dot gnu dot org
  17 siblings, 0 replies; 19+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2008-12-30  1:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #18 from reichelt at gcc dot gnu dot org  2008-12-30 01:18 -------
*** Bug 37970 has been marked as a duplicate of this bug. ***


-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |keenan dot forbes at gmail
                   |                            |dot com


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


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

end of thread, other threads:[~2008-12-30  1:21 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-11-11  9:43 [Bug c++/24791] New: ICE on invalid instantiation of template's static member michael dot haubenwallner at salomon dot at
2005-11-17 10:39 ` [Bug c++/24791] " reichelt at gcc dot gnu dot org
2006-07-12 16:14 ` reichelt at gcc dot gnu dot org
2006-08-15 19:07 ` reichelt at gcc dot gnu dot org
2006-08-30  9:43 ` rguenth at gcc dot gnu dot org
2006-12-16 20:28 ` pinskia at gcc dot gnu dot org
2007-02-09  0:32 ` reichelt at gcc dot gnu dot org
2007-02-09  0:34 ` reichelt at gcc dot gnu dot org
2007-02-09  0:35 ` reichelt at gcc dot gnu dot org
2007-06-12 19:03 ` pinskia at gcc dot gnu dot org
2007-08-11 11:28 ` pinskia at gcc dot gnu dot org
2007-08-16 21:01 ` pinskia at gcc dot gnu dot org
2007-10-26 19:54 ` jason at gcc dot gnu dot org
2007-10-28 21:27 ` reichelt at gcc dot gnu dot org
2007-10-28 21:31 ` reichelt at gcc dot gnu dot org
2007-12-12 23:25 ` pinskia at gcc dot gnu dot org
2008-01-17  3:07 ` pinskia at gcc dot gnu dot org
2008-02-13 17:34 ` pinskia at gcc dot gnu dot org
2008-12-30  1:21 ` reichelt 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).