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

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

From-SVN: r78193
This commit is contained in:
John David Anglin 2004-02-20 23:10:33 +00:00 committed by John David Anglin
parent 7a3e01c408
commit ecd116948f
2 changed files with 31 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -0,0 +1,26 @@
// 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;
}