aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/940611-1.c
blob: 5cbcc41c3d89c1641aaa1526205f2d09430f43c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
void
f (void)
{
  do
L:;
  while (0);
  do
    ;
  while (0);
  goto L;
}