aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/950124-1.c
blob: e723954a0c177bae261dc54db7ddbcc774895331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
f ()
{
  if (g ())
    h ();
  else
    {
      do
	{
	  return 0;
	  break;
	}
      while (1);
    }
  return 1;
}