1 /* { dg-do compile } */
2 /* { dg-options "-minline-all-stringops" } */
3 /* { dg-additional-options "-mtune=pentiumpro" { target ia32 } } */
4 
5 void
my_memcpy(char * dest,const char * src,int n)6 my_memcpy (char *dest, const char *src, int n)
7 {
8   __builtin_memcpy (dest, src, n);
9 }
10