* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr26725.c
blob934042a5241b3004e56ae4dd710b6050a40d82a4
1 struct { unsigned int num; } *numptr;
2 void notice (int);
3 void doit (unsigned int *);
5 void
6 rewrite_finalize_block (int x)
8 unsigned int *tmp;
9 while (tmp = (numptr ? &numptr->num : 0), (tmp ? *tmp : 0) > 0)
11 tmp = (numptr ? &numptr->num : 0);
12 (void) (*tmp ? 0 : notice (x));
13 doit (tmp);