blob: b08f4c076d1b3820a9e384fcc4ff7be9d1673156 [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.u16 q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
uint16x8_t
foo (uint16x8_t a, int32_t b, mve_pred16_t p)
{
return vrshlq_m_n_u16 (a, b, p);
}
/*
**foo1:
** ...
** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
** vpst(?: @.*|)
** ...
** vrshlt.u16 q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
uint16x8_t
foo1 (uint16x8_t a, int32_t b, mve_pred16_t p)
{
return vrshlq_m_n (a, b, p);
}
/* { dg-final { scan-assembler-not "__ARM_undef" } } */