Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.target / powerpc / pr16155.c
blobdf06e702d0597839f5d0c4a6d3897db72749387b
1 /* { dg-do compile { target powerpc*-*-* } } */
2 /* { dg-xfail-if "" { "powerpc-*-eabispe*" "powerpc-ibm-aix*" } { "*" } { "" } } */
3 /* { dg-options "-maltivec -ansi" } */
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 */
10 #include <altivec.h>
12 void foo(void)
14 vector unsigned short a, b;
15 a = vec_splat(b, 0);
18 /* { dg-bogus "parse error before \"typeof\"" "-maltivec -mansi" { target powerpc*-*-* } 0 } */