blob: 836e04af566da0b79ae4c04c97df6a0532c4243c [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"
int8x16_t
foo (int8x16_t inactive, int8x16_t a, int8x16_t b)
{
return vqrdmlsdhq_s8 (inactive, a, b);
}
/* { dg-final { scan-assembler "vqrdmlsdh.s8" } } */
int8x16_t
foo1 (int8x16_t inactive, int8x16_t a, int8x16_t b)
{
return vqrdmlsdhq (inactive, a, b);
}
/* { dg-final { scan-assembler "vqrdmlsdh.s8" } } */