This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c++/9315: g++ doesn't create any code for this testcase
- From: Harald Dunkel <Harri dot Dunkel at synopsys dot com>
- To: reichelt at igpm dot rwth-aachen dot de, Harri dot Dunkel at synopsys dot COM,gcc-bugs at gcc dot gnu dot org, gcc-prs at gcc dot gnu dot org, nobody at gcc dot gnu dot org,gcc-gnats at gcc dot gnu dot org
- Date: Thu, 16 Jan 2003 09:48:28 +0100
- Subject: Re: c++/9315: g++ doesn't create any code for this testcase
- References: <20030115100414.11559.qmail@sources.redhat.com>
reichelt@igpm.rwth-aachen.de wrote:
Synopsis: g++ doesn't create any code for this testcase
State-Changed-From-To: open->feedback
State-Changed-By: reichelt
State-Changed-When: Wed Jan 15 02:04:14 2003
State-Changed-Why:
The testcase somehow got lost.
Could you please send it to me so that I can attach
it to the problem report?
See the attachment.
Regards
Harri
class fix
{
public:
friend void operator+(const fix&, double);
operator double() const;
};
int testcase()
{
fix a;
float b;
a+b;
return 0;
}