blob: adb3ad57fc16cc573bc4078be876c1987f95b800 [file] [log] [blame]
/* { dg-require-effective-target untyped_assembly } */
/* { dg-additional-options "-std=gnu89" } */
f ()
{
int i;
for (i = 1;; i = 0)
{
if (h ())
{
if (i)
g ();
g (h ());
g (h ());
}
else
{
g ();
break;
}
}
}