blob: ea23bf8bdc0c5d381b70c5b55a724043308a9d66 [file] [log] [blame]
/* PR tree-optimization/31632 */
struct S
{
long int l;
void *m;
};
int
foo (struct S *x)
{
unsigned long a;
a = x->l;
if (a <= ((void *) 0))
x->m = 0;
return 0;
}