Add documentation for musttail attribute
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / vec-strir-2.c
blob9459011709cce025936983cbedaff336f9f62162
1 /* { dg-do compile } */
2 /* { dg-options "-mdejagnu-cpu=power10" } */
4 #include <altivec.h>
6 extern void abort (void);
8 /* Vector string isolate right-justified on array of signed char. */
9 vector signed char
10 sirj (vector signed char arg)
12 return vec_strir (arg);
15 /* Enforce that a single dot-form instruction which is properly biased
16 for the target's endianness implements this built-in. */
18 /* { dg-final { scan-assembler-times {\mvstribr\M} 1 { target { be } } } } */
19 /* { dg-final { scan-assembler-times {\mvstribl} 0 { target { be } } } } */
20 /* { dg-final { scan-assembler-times {\mvstribl\M} 1 { target { le } } } } */
21 /* { dg-final { scan-assembler-times {\mvstribr} 0 { target { le } } } } */