This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / gcc.dg / 20030926-1.c
blob09931b378dd9b628d7912cf8131793f039271366
1 /* PR optimization/11741 */
2 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
3 /* { dg-options "-O2 -minline-all-stringops" } */
4 /* { dg-options "-O2 -minline-all-stringops -march=pentium4" { target i?86-*-* } } */
5 /* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */
7 extern void *memcpy (void *, const void *, __SIZE_TYPE__);
8 extern __SIZE_TYPE__ strlen (const char *);
10 void
11 foo (char *p)
13 for (;;)
15 memcpy (p, p + 1, strlen (p));
16 p++;