1// { dg-do compile }
2// Ignore warning on some powerpc-linux configurations.
3// { dg-prune-output "non-standard ABI extension" }
4// { dg-prune-output "changes the ABI" }
5#define vector __attribute__((vector_size(16) ))
6vector unsigned int f(int a)
7{
8  vector unsigned int mask = a ? (vector unsigned int){ 0x80000000, 0x80000000,
90x80000000, 0x80000000 } : (vector unsigned int){0};
10  return mask;
11}
12
13