blob: 8bf21eeaef54bef7ecf70585190fe6d2fbe91fbe [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.u8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint8x16_t
foo (uint8x16_t a, int8x16_t b)
{
return vrshlq_u8 (a, b);
}
/*
**foo1:
** ...
** vrshl.u8 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
** ...
*/
uint8x16_t
foo1 (uint8x16_t a, int8x16_t b)
{
return vrshlq (a, b);
}
/* { dg-final { scan-assembler-not "__ARM_undef" } } */