]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr56350.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr56350.c
CommitLineData
47cc28f5
JJ
1/* PR tree-optimization/56350 */
2/* { dg-do compile } */
3/* { dg-options "-O -ftree-vectorize" } */
4
5int a, b, c;
6
7void
8f (void)
9{
10 for (; c; c++)
11 for (b = 0; b < 2; b++)
12 a /= 8;
13}