aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr71901.c
blob: 0be1d73b38cf7ff5abc468940046fdbc89ee3fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */

typedef struct { int _mp_size; } mpz_t[1];
int a, b;
void fn1()
{
  mpz_t c[1][b];
  for (;;) {
      int d = 0 >= 0 ? 0 == 0 ? c[0][0]->_mp_size ? -1 : 0 : 0 : 0,
	  e = 0 >= 0 ? 0 == 0 ? c[1][1]->_mp_size ? -1 : 0 : 0 : 0;
      if (d != e)
	a++;
  }
}