PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr55110.c
blob2a031a529084a0fe0e717ebbfa8e4eb035609a80
1 /* PR tree-optimization/55110 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 -ftree-vectorize" } */
5 int
6 foo (int x)
8 int a, b;
9 for (b = 0; b < 8; b++)
10 for (a = 0; a < 2; a++)
11 x /= 3;
12 return x;