c++: wrong error due to std::initializer_list opt [PR116476]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr92555.c
blobb174e1c612e470b5193621b4250fa7fe8e6d2f4b
1 /* { dg-do compile } */
2 /* { dg-additional-options "-fwrapv" } */
4 signed char rq;
6 signed char
7 pu (int tr, int al)
9 signed char x8;
11 while (tr != 0)
13 for (x8 = 0; x8 >= 0; x8 += 2)
16 rq ^= al ^ 1;
17 ++x8;
18 ++tr;
21 return x8;