]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr70771.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr70771.c
CommitLineData
00f615af
BC
1/* { dg-do compile } */
2/* { dg-options "-O3" } */
3
4int a, b, c, d;
5
6static void
7fn1 ()
8{
9 for (b = 0; b < 1; b++)
10 for (c = 0; c < 1; c++)
11 {
12 if (a)
13 break;
14 b = 1;
15 }
16 for (;;)
17 ;
18}
19
20int
21main ()
22{
23 if (d)
24 fn1 ();
25 return 0;
26}