PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr83506.c
blobb138c9d3ae71cba2ee27e4d03a0a4407dba488fd
1 /* PR ipa/83506 */
2 /* { dg-do compile { target pthread } } */
3 /* { dg-options "-O1 -ftree-parallelize-loops=2 -fno-ipa-pure-const" } */
5 unsigned int
6 foo (unsigned int x, int y)
8 while (y < 1)
10 x *= 3;
11 ++y;
13 return x;