PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / pr24367.c
blob64867190992a0d32715424fe3da377d5eeab8d68
1 /* { dg-do compile { target fpic } } */
2 /* { dg-options "-O2 -fPIC -funroll-loops" } */
4 char *
5 test (const char *parent, const char *child)
7 static char rtn_path[1024];
8 char *s = rtn_path;
9 char *s_end = rtn_path + sizeof (rtn_path);
10 const char *s2 = child;
12 while (*s != '\0')
13 s++;
14 while ((s < s_end) && (*s2 != '\0'))
15 *s++ = *s2++;
16 return (rtn_path);