1/* PR tree-optimization/31632 */
2
3struct S
4{
5  long int l;
6  void *m;
7};
8
9int
10foo (struct S *x)
11{
12  unsigned long a;
13  a = x->l;
14  if (a <= ((void *) 0))
15    x->m = 0;
16  return 0;
17}
18