1 /* { dg-do compile } */
2 /* { dg-options "-fcheck-pointer-bounds -mmpx" } */
3 /* { dg-final { scan-assembler-not "memcpy" } } */
4 
5 void
test(void * dst,void * src)6 test (void *dst, void *src)
7 {
8   __builtin_memcpy (dst, src, sizeof (char *) / 2);
9 }
10