view gcc/testsuite/g++.dg/other/s390-1.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { 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" } }