aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr69740-1.c
blob: ac867d8a99926d0a0dbe7422f65e20902ff24d32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
char a;
short b;
void fn1() {
  if (b)
    ;
  else {
    int c[1] = {0};
  l1:;
  }
  if (a)
    goto l1;
}