blob: 82774c794fec5c239be4aee5c41f1f937f6681a0 [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:
** ...
** vrshl.u32 q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
uint32x4_t
foo (uint32x4_t a, int32_t b)
{
return vrshlq_n_u32 (a, b);
}
/*
**foo1:
** ...
** vrshl.u32 q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
uint32x4_t
foo1 (uint32x4_t a, int32_t b)
{
return vrshlq (a, b);
}
/* { dg-final { scan-assembler-not "__ARM_undef" } } */