view gcc/testsuite/gcc.dg/torture/pr69936.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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; }