aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00101.c
blob: d530802f9766513e9ea4f1038711523cc3a95cea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
int
main()
{
  int c;
  c = 0;
  do
    ;
  while (0);
  return c;
}