blob: f7761349f8e3bb27c1ce94aa111197d3aa069d5e [file] [log] [blame]
/* PR target/27387
We used to generate a non-PIC thunk on thumb even with -fPIC.
Make sure that won't happen anymore. */
/* { dg-do compile } */
/* { dg-require-effective-target arm32 } */
/* { dg-options "-mthumb -fPIC" } */
struct A {
virtual void f ();
};
struct B {
virtual void g ();
};
struct C : public A, public B {
virtual void g();
};
void
C::g()
{
}
/* { dg-final { scan-assembler "LTHUNKPC" } } */