blob: 6b32b8ccfd5e6e2989b7d3bae9960e8b9679dfe5 [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:
** ...
** vadd.i8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int8x16_t
foo (int8x16_t a, int8x16_t b)
{
return vaddq_s8 (a, b);
}
/*
**foo1:
** ...
** vadd.i8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
int8x16_t
foo1 (int8x16_t a, int8x16_t b)
{
return vaddq (a, b);
}
/* { dg-final { scan-assembler-not "__ARM_undef" } } */