blob: 084c1cdbfebf4b3b3feca6b08dfc45e1130e9c8f [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "" } */
void h ();
void f () __attribute__ ((returns_twice));
void g (_Complex int a)
{
f ();
if (a != 0)
{
a = 0;
h ();
}
}