1 /* { dg-do compile { target { powerpc*-*-* } } } */
2 /* { dg-skip-if "" { powerpc*-*-darwin* } } */
3 /* { dg-require-effective-target powerpc_p8vector_ok } */
4 /* { dg-skip-if "do not override -mcpu" { powerpc*-*-* } { "-mcpu=*" } { "-mcpu=power8" } } */
5 /* { dg-options "-O3 -mcpu=power8 -g -fPIC -fvisibility=hidden -fstack-protector-strong" } */
7 template <typename, typename T> struct E { T e; };
10 J (unsigned x, unsigned y) : k(x), l(y) {}
15 A (J x, J y) : n(x), p(y) {}
27 typedef E<unsigned, S> D;
29 void m6 (unsigned, A);
31 bool B::C::m1 (S, A &x) { bool o; x = m4 (); return o; }
32 J B::C::m2 () const { unsigned g (u == 0); unsigned h (v); return J (g, h); }
33 J B::C::m3 () const { unsigned g (q != t); unsigned h (r != t); return J (g, h); }
34 A B::C::m4 () const { return A (m2 (), m3 ()); }
35 void B::m5 (D *c) { unsigned x; C ar; A am; if (ar.m1 (c->e, am)) m6 (x, am); }