Commit ecd11694 by John David Anglin Committed by John David Anglin

re PR c++/12007 (Multiple inheritance float pass by value fails)

	PR c++/12007
	* g++.dg/other/vthunk1.C: New test.

From-SVN: r78193
parent 7a3e01c4
2004-02-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR c++/12007
* g++.dg/other/vthunk1.C: New test.
2004-02-20 Falk Hueffner <falk@debian.org>
PR target/14201
......
// PR c++/12007 Multiple inheritance float pass by value fails
// { dg-do run }
extern "C" void abort (void);
class gvImpl
{
public:
virtual void PutVal(float value){}
};
class foo { public: virtual void Bar(){} };
class myGv: public foo, public gvImpl
{
void PutVal(float value){ if (value != 3.14159f) abort (); }
};
myGv x;
gvImpl* object = &x;
int main()
{
object->PutVal(3.14159f);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment