Stop only if there aren't any usable algorithms
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / retarg.c
bloba69b60feaf4ec370f1f1eec9deb2ea36fb968e49
1 /* { dg-do compile { target { ! ia32 } } } */
2 /* { dg-options "-O2" } */
4 #include <string.h>
6 void *p (void *x, void *y, int z)
8 memcpy (x, y, z);
9 return x;
12 /* { dg-final { scan-assembler-not "%\[re\]di" } } */