blob: 9b7e2d0e53b9abc6eee05126dfde7c8aa18fd4d4 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-fdump-tree-gimple" } */
#include <stdint.h>
void f1();
void f2();
void
foo (int *a)
{
if ((intptr_t) a == 0)
{
f1 ();
if (a)
f2 ();
}
}
/* { dg-final { scan-tree-dump "if \\(a == 0B\\)" "gimple" } } */