public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/31751] [4.1/4.2/4.3 regression] ICE with forgotten member declaration
  2007-04-29 11:19 [Bug c++/31751] New: [4.1/4.2/4.3 regression] ICE with forgotten member declaration reichelt at gcc dot gnu dot org
@ 2007-04-29 11:19 ` reichelt at gcc dot gnu dot org
  2007-04-30 18:54 ` 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-04-29 11:19 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=31751


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

* [Bug c++/31751]  New: [4.1/4.2/4.3 regression] ICE with forgotten member declaration
@ 2007-04-29 11:19 reichelt at gcc dot gnu dot org
  2007-04-29 11:19 ` [Bug c++/31751] " 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-04-29 11:19 UTC (permalink / raw)
  To: gcc-bugs

The following invalid code snippet triggers an ICE since GCC 4.0.0:

==========================================================
struct A
{
  int i;
};

template<typename T> int A::foo(int T::*) { return 0; }

int j = A::foo(&A::i);
==========================================================

bug.cc:6: error: no 'int A::foo(int T::*)' member function declared in class
'A'
bug.cc:6: error: template definition of non-template 'int A::foo(int T::*)'
bug.cc:8: internal compiler error: tree check: expected record_type or
union_type or qual_union_type, have template_type_parm in lookup_base, at
cp/search.c:213
Please submit a full bug report, [etc.]


-- 
           Summary: [4.1/4.2/4.3 regression] ICE with forgotten member
                    declaration
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Keywords: ice-on-invalid-code, error-recovery, 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=31751


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

* [Bug c++/31751] [4.1/4.2/4.3 regression] ICE with forgotten member declaration
  2007-04-29 11:19 [Bug c++/31751] New: [4.1/4.2/4.3 regression] ICE with forgotten member declaration reichelt at gcc dot gnu dot org
  2007-04-29 11:19 ` [Bug c++/31751] " reichelt at gcc dot gnu dot org
@ 2007-04-30 18:54 ` mmitchel at gcc dot gnu dot org
  2007-08-15 11:22 ` [Bug c++/31751] [4.1/4.2 " pcarlini at suse dot de
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-04-30 18:54 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4


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


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

* [Bug c++/31751] [4.1/4.2 regression] ICE with forgotten member declaration
  2007-04-29 11:19 [Bug c++/31751] New: [4.1/4.2/4.3 regression] ICE with forgotten member declaration reichelt at gcc dot gnu dot org
  2007-04-29 11:19 ` [Bug c++/31751] " reichelt at gcc dot gnu dot org
  2007-04-30 18:54 ` mmitchel at gcc dot gnu dot org
@ 2007-08-15 11:22 ` pcarlini at suse dot de
  2007-08-16 22:42 ` reichelt at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pcarlini at suse dot de @ 2007-08-15 11:22 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pcarlini at suse dot de  2007-08-15 11:22 -------
Cannot be reproduced anymore in mainline, likely because of 33035.


-- 

pcarlini at suse dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.1/4.2/4.3 regression] ICE|[4.1/4.2 regression] ICE
                   |with forgotten member       |with forgotten member
                   |declaration                 |declaration


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


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

* [Bug c++/31751] [4.1/4.2 regression] ICE with forgotten member declaration
  2007-04-29 11:19 [Bug c++/31751] New: [4.1/4.2/4.3 regression] ICE with forgotten member declaration reichelt at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2007-08-15 11:22 ` [Bug c++/31751] [4.1/4.2 " pcarlini at suse dot de
@ 2007-08-16 22:42 ` reichelt at gcc dot gnu dot org
  2007-08-17  9:23 ` pcarlini at suse dot de
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2007-08-16 22:42 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from reichelt at gcc dot gnu dot org  2007-08-16 22:42 -------
Hi Paolo,

this was apparently fixed by your patch for PR27211 (and not PR33035).
A backport would be nice to fix the regression here.


-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pcarlini at suse dot de
  BugsThisDependsOn|                            |27211


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


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

* [Bug c++/31751] [4.1/4.2 regression] ICE with forgotten member declaration
  2007-04-29 11:19 [Bug c++/31751] New: [4.1/4.2/4.3 regression] ICE with forgotten member declaration reichelt at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2007-08-16 22:42 ` reichelt at gcc dot gnu dot org
@ 2007-08-17  9:23 ` pcarlini at suse dot de
  2008-07-04 22:03 ` [Bug c++/31751] [4.2 " jsm28 at gcc dot gnu dot org
  2009-03-30 21:46 ` jsm28 at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pcarlini at suse dot de @ 2007-08-17  9:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pcarlini at suse dot de  2007-08-17 09:23 -------
Hi Volker. I will be away for some days on vacations... In the meanwhile, if
you could double check that we really want the fix for 27211 (not a regression)
on the branches and, in case, take care of the backport, it would be great.
Thanks in advance.


-- 


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


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

* [Bug c++/31751] [4.2 regression] ICE with forgotten member declaration
  2007-04-29 11:19 [Bug c++/31751] New: [4.1/4.2/4.3 regression] ICE with forgotten member declaration reichelt at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2007-08-17  9:23 ` pcarlini at suse dot de
@ 2008-07-04 22:03 ` jsm28 at gcc dot gnu dot org
  2009-03-30 21:46 ` 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 22:03 UTC (permalink / raw)
  To: gcc-bugs



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


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.1/4.2 regression] ICE    |[4.2 regression] ICE with
                   |with forgotten member       |forgotten member declaration
                   |declaration                 |
   Target Milestone|4.1.3                       |4.2.5


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


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

* [Bug c++/31751] [4.2 regression] ICE with forgotten member declaration
  2007-04-29 11:19 [Bug c++/31751] New: [4.1/4.2/4.3 regression] ICE with forgotten member declaration reichelt at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2008-07-04 22:03 ` [Bug c++/31751] [4.2 " jsm28 at gcc dot gnu dot org
@ 2009-03-30 21:46 ` jsm28 at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2009-03-30 21:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jsm28 at gcc dot gnu dot org  2009-03-30 21:46 -------
Closing 4.2 branch, fixed in 4.3.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
      Known to fail|                            |4.2.5
      Known to work|                            |4.3.0
         Resolution|                            |FIXED
   Target Milestone|4.2.5                       |4.3.0


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


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

end of thread, other threads:[~2009-03-30 21:46 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-04-29 11:19 [Bug c++/31751] New: [4.1/4.2/4.3 regression] ICE with forgotten member declaration reichelt at gcc dot gnu dot org
2007-04-29 11:19 ` [Bug c++/31751] " reichelt at gcc dot gnu dot org
2007-04-30 18:54 ` mmitchel at gcc dot gnu dot org
2007-08-15 11:22 ` [Bug c++/31751] [4.1/4.2 " pcarlini at suse dot de
2007-08-16 22:42 ` reichelt at gcc dot gnu dot org
2007-08-17  9:23 ` pcarlini at suse dot de
2008-07-04 22:03 ` [Bug c++/31751] [4.2 " jsm28 at gcc dot gnu dot org
2009-03-30 21:46 ` 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).