This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/14584] [3.4 Regression] ice on valid code.
- From: "reichelt at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 16 Mar 2004 02:36:29 -0000
- Subject: [Bug c++/14584] [3.4 Regression] ice on valid code.
- References: <20040315172113.14584.pluto@ds14.agh.edu.pl>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From reichelt at gcc dot gnu dot org 2004-03-16 02:36 -------
This boils down to
===================================
struct A
{
A();
void foo(A*);
};
void bar(A*, A* p)
{
p->foo(new A);
}
===================================
which looks like PR 14477.
But even if it isn't a duplicate, the bug appears to be fixed,
as I can reproduce it with the 20040311 version, but not with
today's version.
*** This bug has been marked as a duplicate of 14477 ***
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
Target Milestone|3.4.1 |3.4.0
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14584