1  f (const char *s, char *d, unsigned l)
       2  {
       3    if (0)
       4      while (1);
       5    else
       6      while (--l >= 0)
       7        *d++ = *s++;
       8  }
       1  f (const char *s, char *d, unsigned l)
       2  {
       3    if (0)
       4      while (1);
       5    else
       6      while (--l >= 0)
       7        *d++ = *s++;
       8  }