blob: c9d3ffb45b7f7e56fbed4b8752a7ad0e4c1c3701 [file] [log] [blame]
/* { dg-require-effective-target arm_v8_1m_mve_ok } */
/* { dg-add-options arm_v8_1m_mve } */
/* { dg-additional-options "-O2" } */
#include "arm_mve.h"
int16x8_t
foo (int16x8_t a, int16x8_t b, mve_pred16_t p)
{
return vhsubq_x_s16 (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vhsubt.s16" } } */
int16x8_t
foo1 (int16x8_t a, int16x8_t b, mve_pred16_t p)
{
return vhsubq_x (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */