aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr97559-2.c
blob: b512e6db7cae320d4805b51bcb519188817aee5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile } */

int a, b, c, d;

void e() {
  int f = b;
  if (a) {
  L1:
    a = 0;
  L2:
    if (a) {
      c = b;
      goto L1;
    }
  }
  if (d)
    goto L2;
}