[ARM][GCC][2/3x]: MVE intrinsics with ternary operands.
[official-gcc.git] / gcc / testsuite / gcc.target / arm / mve / intrinsics / vmaxvq_p_u16.c
blob35390363811a62c7468cee3ed252eab3fe05bf26
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 uint16_t
9 foo (uint16_t a, uint16x8_t b, mve_pred16_t p)
11 return vmaxvq_p_u16 (a, b, p);
14 /* { dg-final { scan-assembler "vmaxvt.u16" } } */
16 uint16_t
17 foo1 (uint16_t a, uint16x8_t b, mve_pred16_t p)
19 return vmaxvq_p (a, b, p);
22 /* { dg-final { scan-assembler "vmaxvt.u16" } } */