]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr56436.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr56436.c
CommitLineData
f1ad3354
MP
1/* PR tree-optimization/56426 */
2/* { dg-do compile } */
3/* { dg-options "-O2" } */
4
5int a, *c;
6
7void
8f (void)
9{
10 int b = 0;
11
12 for (a = 0;; a++)
13 if (--b)
14 {
15 if (a)
16 lbl:
17 a++;
18
19 c = &b;
20 goto lbl;
21 }
22}