blob: 94d938745422a4f93f51be03affc67a305018350 [file] [log] [blame]
/* { dg-require-effective-target arm_v8_1m_mve_ok } */
/* { dg-add-options arm_v8_1m_mve } */
/* { dg-additional-options "-O2" } */
/* { dg-final { check-function-bodies "**" "" } } */
#include "arm_mve.h"
/*
**foo:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vqdmlaht.s16 q[0-9]+, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
int16x8_t
foo (int16x8_t add, int16x8_t m1, int16_t m2, mve_pred16_t p)
{
return vqdmlahq_m_n_s16 (add, m1, m2, p);
}
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vqdmlaht.s16 q[0-9]+, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
int16x8_t
foo1 (int16x8_t add, int16x8_t m1, int16_t m2, mve_pred16_t p)
{
return vqdmlahq_m (add, m1, m2, p);
}
/* { dg-final { scan-assembler-not "__ARM_undef" } } */