Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / pr85430.c
blob7b58a3cd56740a1f8cf6a4803a210e451bc490f0
1 /* PR target/85430 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -fno-tree-ccp -fno-tree-fre" } */
5 typedef char V __attribute__((vector_size (4)));
8 foo (V v)
10 v[(V){}[0]] <<= 1;
11 return v;