blob: a2a760bfc964d5c48d6255b993aae9e6651f00bf [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O1 -fdelete-null-pointer-checks" } */
int t(int *a)
{
int i;
*a = 1;
i = a == 0;
return i;
}