[ARM][GCC][3/2x]: MVE intrinsics with binary operands.
[official-gcc.git] / gcc / testsuite / gcc.target / arm / mve / intrinsics / vrev64q_u8.c
blobd9a194afb475af6ce8ef8e9b3e3eb03edcf791d7
1 /* { dg-do compile } */
2 /* { dg-require-effective-target arm_v8_1m_mve_ok } */
3 /* { dg-add-options arm_v8_1m_mve } */
4 /* { dg-additional-options "-O2" } */
6 #include "arm_mve.h"
8 uint8x16_t
9 foo (uint8x16_t a)
11 return vrev64q_u8 (a);
14 /* { dg-final { scan-assembler "vrev64.8" } } */
16 uint8x16_t
17 foo1 (uint8x16_t a)
19 return vrev64q (a);
22 /* { dg-final { scan-assembler "vrev64.8" } } */