OSDN Git Service

* c-decl.c (declspecs_add_type): Don't pedwarn for _Complex in
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20030926-1.c
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
6 extern void *memcpy (void *, const void *, __SIZE_TYPE__);
7 extern __SIZE_TYPE__ strlen (const char *);
8
9 void
10 foo (char *p)
11 {
12   for (;;)
13     {
14       memcpy (p, p + 1, strlen (p));
15       p++;
16     }
17 }
18