]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr71619.c
re PR middle-end/71619 (ICE: in predict_loops, at predict.c:1772 with --param=max...
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr71619.c
1 /* PR 71619 */
2
3 /* { dg-do compile } */
4 /* { dg-options "-O --param=max-predicted-iterations=0" } */
5
6 void
7 foo ()
8 {
9 int count = -10;
10 while (count++);
11 }