--- Comment #8 from rguenth at gcc dot gnu dot org 2006-02-07 15:39 ---
Fixed.
--
rguenth at gcc dot gnu dot org changed:
What|Removed |Added
Status|NEW
--- Comment #7 from rguenth at gcc dot gnu dot org 2006-02-07 15:36 ---
Subject: Bug 26140
Author: rguenth
Date: Tue Feb 7 15:36:44 2006
New Revision: 110699
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=110699
Log:
2006-02-07 Richard Guenther <[EMAIL PROTECTED]>
PR
--- Comment #6 from pinskia at gcc dot gnu dot org 2006-02-07 14:46 ---
(In reply to comment #5)
> Ho humm, so I propose to revert the patch (that I didn't like very much
> anyway). Can I do so without approval?
Yes but what about fixing the C++ front-end so that it does not place the
--- Comment #5 from rguenth at gcc dot gnu dot org 2006-02-07 10:07 ---
Ho humm, so I propose to revert the patch (that I didn't like very much
anyway). Can I do so without approval?
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26140
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-02-07 00:35 ---
Reduced testcase:
struct Pitch
{
int notename_;
};
struct Audio_note
{
Audio_note (Pitch p);
};
void create_audio_elements ()
{
Pitch *pit;
new Audio_note (*pit);
}
Looks like this is caused by:
2006
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-02-06 23:39 ---
It worked with "4.2.0 20051217".
--
pinskia at gcc dot gnu dot org changed:
What|Removed |Added