1/* { dg-do compile { target powerpc*-*-* } } */
2/* { dg-require-effective-target powerpc_altivec_ok } */
3/* { dg-options "-maltivec -ansi" } */
4
5/* PR 16155
6 * Compilation of a simple altivec test program fails if the -ansi flag is
7 * given to gcc, when compiling with -maltivec.
8 */
9
10#include <altivec.h>
11
12void foo(void)
13{
14  vector unsigned short a, b;
15  a = vec_splat(b, 0);
16}
17
18/* { dg-bogus "parse error before \"typeof\"" "-maltivec -mansi" { target powerpc*-*-* } 0 } */
19