blob: b174e1c612e470b5193621b4250fa7fe8e6d2f4b [file] [log] [blame]
/* { dg-do compile } */
/* { dg-additional-options "-fwrapv" } */
signed char rq;
signed char
pu (int tr, int al)
{
signed char x8;
while (tr != 0)
{
for (x8 = 0; x8 >= 0; x8 += 2)
;
rq ^= al ^ 1;
++x8;
++tr;
}
return x8;
}