diagnostics: move output formats from diagnostic.{c,h} to their own files
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / vsxcopy.c
blobdd73f16e2b39503100f87619c1582349609dd5a6
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -mvsx" } */
3 /* { dg-require-effective-target powerpc_vsx } */
4 /* { dg-final { scan-assembler {\m(lxvd2x|lxv)\M} } } */
5 /* { dg-final { scan-assembler {\m(stxvd2x|stxv)\M} } } */
6 /* { dg-final { scan-assembler-not "xxpermdi" } } */
8 typedef float vecf __attribute__ ((vector_size (16)));
9 extern vecf j, k;
11 void fun (void)
13 j = k;