aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/string-opt-1.c
blob: bc0f30098fa1fc4225d0bb3230f5e59f7a8fa738 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Ensure mempcpy is not "optimized" into memcpy followed by addition.  */
/* { dg-do compile } */
/* { dg-options "-O2" } */

void *
fn (char *x, char *y, int z)
{
  return __builtin_mempcpy (x, y, z);
}

/* { dg-final { scan-assembler-not "memcpy" } } */