PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / memcpy-vector_loop-1.c
blob113c876c324701319559b58bddec25a8a0445244
1 /* { dg-do compile } */
2 /* { dg-skip-if "" { *-*-* } { "-march=*" } { "-march=atom" } } */
3 /* { dg-options "-O2 -march=atom -minline-all-stringops -mstringop-strategy=vector_loop" } */
4 /* { dg-final { scan-assembler-times "movdqa" 8 { target { ! ia32 } } } } */
5 /* { dg-final { scan-assembler-times "movdqa" 4 { target ia32 } } } */
7 char a[2048];
8 char b[2048];
9 void t (void)
11 __builtin_memcpy (a, b, 2048);