rs6000.c (rs6000_function_arg): Remove CALL_LIBCALL when returning call_cookie.
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / block-move-2.c
blobffaf9ef05e8b849062386ee12fe1857608584e96
1 /* Test that we honor -mblock-move-inline-limit. */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -mblock-move-inline-limit=128" } */
5 typedef __SIZE_TYPE__ size_t;
6 extern void *memcpy (void *, const void *, size_t);
8 void
9 cpy128 (void *x, void *y)
11 memcpy (x, y, 128);
14 /* { dg-final { scan-assembler-not "memcpy" } } */