2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / 20030926-1.c
blob39833a65171245f95277d5db9927cbac1647b848
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-*-* } } */
6 void
7 foo (char *p)
9 for (;;)
11 memcpy (p, p + 1, strlen (p));
12 p++;