URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [other/] [s390-1.C] - Rev 308
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile { target s390x-*-* } }
// { dg-options "-O3 -fPIC" }
class A
{
public:
void f (void) { _M_a = 0; }
void g (void) { _M_a = 1; }
void h (void);
private:
int _M_a;
};
class B : virtual public A
{
};
void
test (B& x)
{
for (int i = 0; i < 17; i++)
{
x.f ();
(x.*&A::g) ();
x.h ();
}
}
// Check that every call to A::g goes via the PLT.
// { dg-final { scan-assembler-not "brasl\[^@\]*\n" } }
Go to most recent revision | Compare with Previous | Blame | View Log