summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20030926-1.c
blob: 39833a65171245f95277d5db9927cbac1647b848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* PR optimization/11741  */
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O2 -minline-all-stringops" } */
/* { dg-options "-O2 -minline-all-stringops -march=pentium4" { target i?86-*-* } } */

void
foo (char *p)
{
  for (;;)
    {
      memcpy (p, p + 1, strlen (p));
      p++;
    }
}