blob: 827b26f148ebb6f6d52b58a1c1a43dd8c35ce1a3 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -fno-tree-ccp" } */
int a;
void b(int c) {}
int main()
{
int d = 0, *e = &a;
if (d) {
int *f = e;
while (a)
b(e != f);
}
return 0;
}