aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/930503-1.c
blob: 6889e8b7aed8900de6062cff9ece3c27fd13f146 (plain)
1
2
3
4
5
6
7
8
f (const char *s, char *d, unsigned l)
{
  if (0)
    while (1);
  else
    while (--l >= 0)
      *d++ = *s++;
}