Fix gimplification of ordering comparisons of arrays of bytes
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr103489.c
blobcd62623ece2f7af861cb7affdd6300f6ad181793
1 /* { dg-do compile } */
2 /* { dg-additional-options "-ftree-vectorize" } */
4 _Bool a[80];
5 short b, f;
6 void g(short h[][8][16])
8 for (_Bool c = 0; c < b;)
9 for (_Bool d = 0; d < (_Bool)f; d = 1)
10 for (short e = 0; e < 16; e++)
11 a[e] = h[b][1][e];