blob: 0379e0455c99f970b04d97d476068f78e1eef73d [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(?: @.*|)
** ...
** vrshlt.u32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo (uint32x4_t inactive, uint32x4_t a, int32x4_t b, mve_pred16_t p)
{
return vrshlq_m_u32 (inactive, a, b, p);
}
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vrshlt.u32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint32x4_t
foo1 (uint32x4_t inactive, uint32x4_t a, int32x4_t b, mve_pred16_t p)
{
return vrshlq_m (inactive, a, b, p);
}
/* { dg-final { scan-assembler-not "__ARM_undef" } } */