* gcc.target/i386/xop-rotate1-vector.c (dg-options): Add -mno-avx2.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr47502-2.c
bloba8dc1ca01897329e4e7b0ff839b685e0eb1dea68
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-pic" } */
4 int
5 foo (int how, const void *set, void *oset)
7 int resultvar;
8 asm volatile (""
9 : "=a" (resultvar)
10 : "0" (14) , "b" (how), "c" ((set)), "d" ((oset)), "S" (65 / 8) : "memory", "cc");
11 return resultvar;