1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* { dg-do compile { target powerpc*-*-* } } */ /* { dg-require-effective-target powerpc_altivec_ok } */ /* { dg-options "-maltivec" } */ /* PR c++/14426 */ #include <altivec.h> vector unsigned int splat0u() { return vec_splat_u32(0); } vector int splat0s() { return vec_splat_s32(0); }