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