blob: cf867e56874322be06896dc538ade630b099890b [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:
** ...
** vqdmlash.s32 q[0-9]+, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
int32x4_t
foo (int32x4_t m1, int32x4_t m2, int32_t add)
{
return vqdmlashq_n_s32 (m1, m2, add);
}
/*
**foo1:
** ...
** vqdmlash.s32 q[0-9]+, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
** ...
*/
int32x4_t
foo1 (int32x4_t m1, int32x4_t m2, int32_t add)
{
return vqdmlashq (m1, m2, add);
}
/* { dg-final { scan-assembler-not "__ARM_undef" } } */