comparison gcc/testsuite/gcc.dg/graphite/pr84404.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
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
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 }