Fix gimplification of ordering comparisons of arrays of bytes
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr102131-4.c
blobc63c08b2137f8510fdb07b1a074b2c75e6127fbf
1 /* { dg-do run } */
2 /* { dg-require-effective-target int32plus } */
4 unsigned a;
5 int main()
7 unsigned b = 1;
8 for (; b < 4; b++) {
9 a = (a ^ 2000000000) * -b;
10 if (b > a)
11 __builtin_abort ();
12 a = 3000000000;
14 return 0;