OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [other/] [vthunk1.C] - Diff between revs 149 and 154

Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
// PR c++/12007 Multiple inheritance float pass by value fails
// PR c++/12007 Multiple inheritance float pass by value fails
// { dg-do run }
// { dg-do run }
extern "C" void abort (void);
extern "C" void abort (void);
class gvImpl
class gvImpl
{
{
public:
public:
  virtual void PutVal(float value){}
  virtual void PutVal(float value){}
};
};
class foo { public: virtual void Bar(){} };
class foo { public: virtual void Bar(){} };
class myGv: public foo, public gvImpl
class myGv: public foo, public gvImpl
{
{
  void PutVal(float value){ if (value != 3.14159f) abort (); }
  void PutVal(float value){ if (value != 3.14159f) abort (); }
};
};
myGv x;
myGv x;
gvImpl* object = &x;
gvImpl* object = &x;
int main()
int main()
{
{
  object->PutVal(3.14159f);
  object->PutVal(3.14159f);
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.