public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/25364]  New: Internal compiler error in templated C++
@ 2005-12-12 10:11 philb at filmlight dot ltd dot uk
  2005-12-12 10:13 ` [Bug c++/25364] " philb at filmlight dot ltd dot uk
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: philb at filmlight dot ltd dot uk @ 2005-12-12 10:11 UTC (permalink / raw)
  To: gcc-bugs

internal compiler error: in build_call, at cp/call.c:323

Can't narrow it down - happens in five different places in our codebase.


-- 
           Summary: Internal compiler error in templated C++
           Product: gcc
           Version: 4.0.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: philb at filmlight dot ltd dot uk
 GCC build triplet: i386-redhat-linux
  GCC host triplet: i386-redhat-linux
GCC target triplet: i386-redhat-linux


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


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

* [Bug c++/25364] Internal compiler error in templated C++
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
@ 2005-12-12 10:13 ` philb at filmlight dot ltd dot uk
  2005-12-12 12:26 ` philb at filmlight dot ltd dot uk
                   ` (18 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: philb at filmlight dot ltd dot uk @ 2005-12-12 10:13 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from philb at filmlight dot ltd dot uk  2005-12-12 10:13 -------
Created an attachment (id=10455)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10455&action=view)
Preprocessed file that causes error


-- 


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


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

* [Bug c++/25364] Internal compiler error in templated C++
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
  2005-12-12 10:13 ` [Bug c++/25364] " philb at filmlight dot ltd dot uk
@ 2005-12-12 12:26 ` philb at filmlight dot ltd dot uk
  2005-12-12 15:16 ` [Bug c++/25364] [4.0/4.1/4.2 Regression] " pinskia at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: philb at filmlight dot ltd dot uk @ 2005-12-12 12:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from philb at filmlight dot ltd dot uk  2005-12-12 12:26 -------
Just tested; it's live in 4.0-20051208.


-- 


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] Internal compiler error in templated C++
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
  2005-12-12 10:13 ` [Bug c++/25364] " philb at filmlight dot ltd dot uk
  2005-12-12 12:26 ` philb at filmlight dot ltd dot uk
@ 2005-12-12 15:16 ` pinskia at gcc dot gnu dot org
  2005-12-12 18:39 ` pinskia at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-12-12 15:16 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at gcc dot gnu dot org  2005-12-12 15:16 -------
Reducing.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|Internal compiler error in  |[4.0/4.1/4.2 Regression]
                   |templated C++               |Internal compiler error in
                   |                            |templated C++
   Target Milestone|---                         |4.0.3


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] Internal compiler error in templated C++
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (2 preceding siblings ...)
  2005-12-12 15:16 ` [Bug c++/25364] [4.0/4.1/4.2 Regression] " pinskia at gcc dot gnu dot org
@ 2005-12-12 18:39 ` pinskia at gcc dot gnu dot org
  2005-12-12 23:46 ` reichelt at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-12-12 18:39 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from pinskia at gcc dot gnu dot org  2005-12-12 18:39 -------
Reduced to:
class OFX_PropertySuiteV1
{
    static int propGetDouble ();
};
template<int dimension,
  class T,
  int (*PROPGET)()
  >
struct OFX_AnimatedNumberParam
{
    virtual int paramSetValueAtTime()
    {
     return PROPGET();
    }
};
void  f()
{
new OFX_AnimatedNumberParam<2,double,OFX_PropertySuiteV1::propGetDouble>();
}


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |ice-on-valid-code
   Last reconfirmed|0000-00-00 00:00:00         |2005-12-12 18:39:55
               date|                            |


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] Internal compiler error in templated C++
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (3 preceding siblings ...)
  2005-12-12 18:39 ` pinskia at gcc dot gnu dot org
@ 2005-12-12 23:46 ` reichelt at gcc dot gnu dot org
  2005-12-13  2:00 ` reichelt at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-12-12 23:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from reichelt at gcc dot gnu dot org  2005-12-12 23:46 -------
This is a regression from 4.0.2.


-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |reichelt at gcc dot gnu dot
                   |                            |org
           Severity|normal                      |critical
           Keywords|                            |monitored
      Known to fail|                            |4.0.3
      Known to work|                            |4.0.0 4.0.2


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] Internal compiler error in templated C++
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (4 preceding siblings ...)
  2005-12-12 23:46 ` reichelt at gcc dot gnu dot org
@ 2005-12-13  2:00 ` reichelt at gcc dot gnu dot org
  2005-12-13  8:06 ` pinskia at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-12-13  2:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from reichelt at gcc dot gnu dot org  2005-12-13 01:59 -------
Mark, this appeared with your patch
http://gcc.gnu.org/ml/gcc-cvs/2005-10/msg00056.html

Looks like a latent bug, though.

BTW, the code compiles with a function reference instead of a function pointer
as template parameter.


-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mark at codesourcery dot com


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] Internal compiler error in templated C++
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (5 preceding siblings ...)
  2005-12-13  2:00 ` reichelt at gcc dot gnu dot org
@ 2005-12-13  8:06 ` pinskia at gcc dot gnu dot org
  2005-12-13 14:41 ` philb at filmlight dot ltd dot uk
                   ` (12 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-12-13  8:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from pinskia at gcc dot gnu dot org  2005-12-13 08:06 -------
*** Bug 25383 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |victor at thedods dot com


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] Internal compiler error in templated C++
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (6 preceding siblings ...)
  2005-12-13  8:06 ` pinskia at gcc dot gnu dot org
@ 2005-12-13 14:41 ` philb at filmlight dot ltd dot uk
  2005-12-19 19:30 ` mmitchel at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: philb at filmlight dot ltd dot uk @ 2005-12-13 14:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from philb at filmlight dot ltd dot uk  2005-12-13 14:41 -------
Disagree with known to work 4.0.2 - original report was from 4.0.2.


-- 


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] Internal compiler error in templated C++
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (7 preceding siblings ...)
  2005-12-13 14:41 ` philb at filmlight dot ltd dot uk
@ 2005-12-19 19:30 ` mmitchel at gcc dot gnu dot org
  2005-12-21  0:18 ` mmitchel at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-12-19 19:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from mmitchel at gcc dot gnu dot org  2005-12-19 19:30 -------
Must be fixed: P1.


-- 

mmitchel at gcc dot gnu dot org changed:

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


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] Internal compiler error in templated C++
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (8 preceding siblings ...)
  2005-12-19 19:30 ` mmitchel at gcc dot gnu dot org
@ 2005-12-21  0:18 ` mmitchel at gcc dot gnu dot org
  2005-12-22  8:38 ` [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter reichelt at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-12-21  0:18 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=25364


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (9 preceding siblings ...)
  2005-12-21  0:18 ` mmitchel at gcc dot gnu dot org
@ 2005-12-22  8:38 ` reichelt at gcc dot gnu dot org
  2005-12-22 19:59 ` mmitchel at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-12-22  8:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from reichelt at gcc dot gnu dot org  2005-12-22 08:38 -------
Shorter testcase:

=====================================
struct A
{
    static void foo();
};

template<void (*fp)()> struct B
{
    B() { fp(); }
};

B<A::foo> b;
=====================================


-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.0/4.1/4.2 Regression]    |[4.0/4.1/4.2 Regression] ICE
                   |Internal compiler error in  |with function pointer as
                   |templated C++               |template parameter


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (10 preceding siblings ...)
  2005-12-22  8:38 ` [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter reichelt at gcc dot gnu dot org
@ 2005-12-22 19:59 ` mmitchel at gcc dot gnu dot org
  2005-12-22 20:02 ` mmitchel at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-12-22 19:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from mmitchel at gcc dot gnu dot org  2005-12-22 19:59 -------
Subject: Bug 25364

Author: mmitchel
Date: Thu Dec 22 19:59:00 2005
New Revision: 108971

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108971
Log:
        PR c++/25364
        * semantics.c (finish_qualified_id_expr): Call mark_used.

        PR c++/25364
        * g++.dg/template/call4.C: New test.

Added:
    branches/gcc-4_1-branch/gcc/testsuite/g++.dg/template/call4.C
Modified:
    branches/gcc-4_1-branch/gcc/cp/ChangeLog
    branches/gcc-4_1-branch/gcc/cp/semantics.c
    branches/gcc-4_1-branch/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (11 preceding siblings ...)
  2005-12-22 19:59 ` mmitchel at gcc dot gnu dot org
@ 2005-12-22 20:02 ` mmitchel at gcc dot gnu dot org
  2005-12-22 20:08 ` mmitchel at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-12-22 20:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from mmitchel at gcc dot gnu dot org  2005-12-22 20:02 -------
Subject: Bug 25364

Author: mmitchel
Date: Thu Dec 22 20:02:21 2005
New Revision: 108972

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108972
Log:
        PR c++/25364
        * semantics.c (finish_qualified_id_expr): Call mark_used.
        (finish_id_expression): Likewise.

        PR c++/25364
        * g++.dg/template/call4.C: New test.

Added:
    branches/gcc-4_0-branch/gcc/testsuite/g++.dg/template/call4.C
Modified:
    branches/gcc-4_0-branch/gcc/cp/ChangeLog
    branches/gcc-4_0-branch/gcc/cp/semantics.c
    branches/gcc-4_0-branch/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (12 preceding siblings ...)
  2005-12-22 20:02 ` mmitchel at gcc dot gnu dot org
@ 2005-12-22 20:08 ` mmitchel at gcc dot gnu dot org
  2005-12-22 20:15 ` mmitchel at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-12-22 20:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from mmitchel at gcc dot gnu dot org  2005-12-22 20:08 -------
Subject: Bug 25364

Author: mmitchel
Date: Thu Dec 22 20:08:39 2005
New Revision: 108973

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=108973
Log:
        PR c++/25364
        * typeck.c (build_unary_op): Pass DECLs not names to
        build_offset_refs.
        * init.c (build_offset_ref): Do not do name lookup.  Do not call
        mark_used.
        * call.c (build_call): Simplify and tidy.
        * semantics.c (finish_qualified_id_expr): Call mark_used.
        PR c++/25364
        * g++.dg/template/call4.C: New test.

Added:
    trunk/gcc/testsuite/g++.dg/template/call4.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/call.c
    trunk/gcc/cp/init.c
    trunk/gcc/cp/semantics.c
    trunk/gcc/cp/typeck.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (13 preceding siblings ...)
  2005-12-22 20:08 ` mmitchel at gcc dot gnu dot org
@ 2005-12-22 20:15 ` mmitchel at gcc dot gnu dot org
  2006-01-04  3:42 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-12-22 20:15 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from mmitchel at gcc dot gnu dot org  2005-12-22 20:15 -------
Fixed in 4.0.3.


-- 

mmitchel at gcc dot gnu dot org changed:

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


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


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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (14 preceding siblings ...)
  2005-12-22 20:15 ` mmitchel at gcc dot gnu dot org
@ 2006-01-04  3:42 ` pinskia at gcc dot gnu dot org
  2006-01-04  3:44 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-01-04  3:42 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from pinskia at gcc dot gnu dot org  2006-01-04 03:42 -------
*** Bug 25659 has been marked as a duplicate of this bug. ***


-- 

pinskia 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=25364



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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (15 preceding siblings ...)
  2006-01-04  3:42 ` pinskia at gcc dot gnu dot org
@ 2006-01-04  3:44 ` pinskia at gcc dot gnu dot org
  2006-01-04  9:17 ` philb at filmlight dot ltd dot uk
                   ` (2 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-01-04  3:44 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from pinskia at gcc dot gnu dot org  2006-01-04 03:44 -------
(In reply to comment #8)
> Disagree with known to work 4.0.2 - original report was from 4.0.2.

I actually disagree with saying the compiler you are using is a 4.0.2 compiler.
 It is a 4.0.3 compiler from the date you gave in comment #3.


-- 


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



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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (16 preceding siblings ...)
  2006-01-04  3:44 ` pinskia at gcc dot gnu dot org
@ 2006-01-04  9:17 ` philb at filmlight dot ltd dot uk
  2006-01-04 11:43 ` reichelt at gcc dot gnu dot org
  2006-01-09 15:58 ` philb at filmlight dot ltd dot uk
  19 siblings, 0 replies; 21+ messages in thread
From: philb at filmlight dot ltd dot uk @ 2006-01-04  9:17 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from philb at filmlight dot ltd dot uk  2006-01-04 09:17 -------
It's live in the 4.0.2 installed by a Fedora Core 4 yum update right now (4.0.2
20051125 (Red Hat 4.0.2-8)).


-- 


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



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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (17 preceding siblings ...)
  2006-01-04  9:17 ` philb at filmlight dot ltd dot uk
@ 2006-01-04 11:43 ` reichelt at gcc dot gnu dot org
  2006-01-09 15:58 ` philb at filmlight dot ltd dot uk
  19 siblings, 0 replies; 21+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2006-01-04 11:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #18 from reichelt at gcc dot gnu dot org  2006-01-04 11:43 -------
> It's live in the 4.0.2 installed by a Fedora Core 4 yum update right now
> (4.0.2 20051125 (Red Hat 4.0.2-8)).

This is not the official FSF 4.0.2 release.
Redhat's 4.0.2-8 version contains some patches from the 4.0.3 release.
Even their gcc.info file says so:

  This manual documents how to use the GNU compilers, as well as their
  features and incompatibilities, and how to report bugs.  It corresponds
  to GCC version 4.0.3.  The internals of the GNU compilers, including
                ^^^^^^^


-- 


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



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

* [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter
  2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
                   ` (18 preceding siblings ...)
  2006-01-04 11:43 ` reichelt at gcc dot gnu dot org
@ 2006-01-09 15:58 ` philb at filmlight dot ltd dot uk
  19 siblings, 0 replies; 21+ messages in thread
From: philb at filmlight dot ltd dot uk @ 2006-01-09 15:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #19 from philb at filmlight dot ltd dot uk  2006-01-09 15:58 -------
Verified fixed (against original source problem) in 4.0.3 20060105


-- 

philb at filmlight dot ltd dot uk changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |VERIFIED


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



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

end of thread, other threads:[~2006-01-09 15:58 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-12 10:11 [Bug c++/25364] New: Internal compiler error in templated C++ philb at filmlight dot ltd dot uk
2005-12-12 10:13 ` [Bug c++/25364] " philb at filmlight dot ltd dot uk
2005-12-12 12:26 ` philb at filmlight dot ltd dot uk
2005-12-12 15:16 ` [Bug c++/25364] [4.0/4.1/4.2 Regression] " pinskia at gcc dot gnu dot org
2005-12-12 18:39 ` pinskia at gcc dot gnu dot org
2005-12-12 23:46 ` reichelt at gcc dot gnu dot org
2005-12-13  2:00 ` reichelt at gcc dot gnu dot org
2005-12-13  8:06 ` pinskia at gcc dot gnu dot org
2005-12-13 14:41 ` philb at filmlight dot ltd dot uk
2005-12-19 19:30 ` mmitchel at gcc dot gnu dot org
2005-12-21  0:18 ` mmitchel at gcc dot gnu dot org
2005-12-22  8:38 ` [Bug c++/25364] [4.0/4.1/4.2 Regression] ICE with function pointer as template parameter reichelt at gcc dot gnu dot org
2005-12-22 19:59 ` mmitchel at gcc dot gnu dot org
2005-12-22 20:02 ` mmitchel at gcc dot gnu dot org
2005-12-22 20:08 ` mmitchel at gcc dot gnu dot org
2005-12-22 20:15 ` mmitchel at gcc dot gnu dot org
2006-01-04  3:42 ` pinskia at gcc dot gnu dot org
2006-01-04  3:44 ` pinskia at gcc dot gnu dot org
2006-01-04  9:17 ` philb at filmlight dot ltd dot uk
2006-01-04 11:43 ` reichelt at gcc dot gnu dot org
2006-01-09 15:58 ` philb at filmlight dot ltd dot uk

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).