URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [rtti/] [dyncast4.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// Test to make sure that we keep searching if we don't find the type we
// want at the expected address.
// { dg-do run }
struct A
{
virtual void f() {};
};
struct B: A { };
struct C: A { };
struct D: B, C { };
int main()
{
D d;
A* ap = static_cast<B*>(&d);
C* cp = dynamic_cast<C*>(ap);
if (cp == 0)
return 1;
else
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log