libatomic: Handle AVX+CX16 ZHAOXIN like Intel for 16b atomic [PR104688]
[official-gcc.git] / gcc / testsuite / g++.dg / abi / pr60336-5.C
blobfe838750f55698135ce04d8321a0def3c659b947
1 // { dg-do compile }
2 // { dg-options "-O2 -std=c++11 -fno-pic" }
3 // { dg-require-effective-target fpic }
5 struct dummy { };
6 struct true_type { struct dummy i; struct dummy j; };
8 extern true_type y;
9 extern void xxx (true_type c);
11 void
12 yyy (void)
14   xxx (y);
17 // { dg-final { scan-assembler "jmp\[\t \]+\[^\$\]*?_Z3xxx9true_type" { target { { i?86-*-* x86_64-*-* } && { ! { ia32 } } } } } }