]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr103793.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr103793.c
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -fno-guess-branch-probability" } */
3
4 extern void bar (void);
5
6 void
7 foo (int x, int w)
8 {
9 for (int y; y < w; y++)
10 if (y < x)
11 bar ();
12 }