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

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

/* { dg-do run } */

short a;
long b;
int c, d, g;
char e, h;
long f[] = {0};
int main()
{
  int i = 1;
  for (; a <= 3; a++) {
      c = 0;
      for (; c <= 2; c++) {
	  b = 0;
	  for (; b <= 3; b++) {
	      h = i && f[d];
	      e = g && i;
	      i = 0;
	  }
      }
  }
}