* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20070419-1.c
blobea23bf8bdc0c5d381b70c5b55a724043308a9d66
1 /* PR tree-optimization/31632 */
3 struct S
5 long int l;
6 void *m;
7 };
9 int
10 foo (struct S *x)
12 unsigned long a;
13 a = x->l;
14 if (a <= ((void *) 0))
15 x->m = 0;
16 return 0;