aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr69936.c
blob: 3023bbbb1c47e0a003430faf3ca6ba6663d845ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* { dg-do compile } */

int a;
char b;
void fn1(int p1) {}

int fn2() { return 5; }

void fn3() {
  if (fn2())
    ;
  else {
    char c[5];
    c[0] = 5;
  lbl_608:
    fn1(c[9]);
    int d = c[9];
    c[2] | a;
    d = c[b];
  }
  goto lbl_608;
}

int main() { return 0; }