Mercurial > hg > CbC > CbC_gcc
view 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 |
line wrap: on
line source
/* PR debug/84404 */ /* { dg-do compile { target pthread } } */ /* { dg-options "-O2 -ftree-parallelize-loops=2 -floop-nest-optimize -g" } */ int te[9]; void dt (int cz) { while (cz < 1) { int xy; for (xy = 0; xy < 9; ++xy) te[xy] = 0; ++cz; } }