1 /* PR debug/84404 */
2 /* { dg-do compile { target pthread } } */
3 /* { dg-options "-O2 -ftree-parallelize-loops=2 -floop-nest-optimize -g" } */
4 
5 int te[9];
6 
7 void
dt(int cz)8 dt (int cz)
9 {
10   while (cz < 1)
11     {
12       int xy;
13 
14       for (xy = 0; xy < 9; ++xy)
15         te[xy] = 0;
16 
17       ++cz;
18     }
19 }
20