blob: 772ad8b1e767417f94aa40e598e535269a1d99d9 [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(?: @.*|)
** ...
** vmlast.s8 q[0-9]+, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
int8x16_t
foo (int8x16_t m1, int8x16_t m2, int8_t add, mve_pred16_t p)
{
return vmlasq_m_n_s8 (m1, m2, add, p);
}
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vmlast.s8 q[0-9]+, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
int8x16_t
foo1 (int8x16_t m1, int8x16_t m2, int8_t add, mve_pred16_t p)
{
return vmlasq_m (m1, m2, add, p);
}
/* { dg-final { scan-assembler-not "__ARM_undef" } } */