aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr55110.c
blob: 2a031a529084a0fe0e717ebbfa8e4eb035609a80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR tree-optimization/55110 */
/* { dg-do compile } */
/* { dg-options "-O1 -ftree-vectorize" } */

int
foo (int x)
{
  int a, b;
  for (b = 0; b < 8; b++)
    for (a = 0; a < 2; a++)
      x /= 3;
  return x;
}