OSDN Git Service

2012-06-14 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / altivec-4.C
1 /* { dg-do compile { target powerpc*-*-* } } */
2 /* { dg-require-effective-target powerpc_altivec_ok } */
3 /* { dg-options "-maltivec" } */
4
5 /* PR c++/14425 */
6
7 #include <altivec.h>
8
9 vector unsigned int splat0(vector unsigned int x)
10 {
11     return vec_splat(x, 0);
12 }