blob: 921072a44c9c8f13ff2175f2825239323e9703c0 [file] [log] [blame]
/* { dg-require-effective-target arm_v8_1m_mve_ok } */
/* { dg-add-options arm_v8_1m_mve } */
/* { dg-additional-options "-O2" } */
#include "arm_mve.h"
int32x4_t
foo (int32x4_t a, int32x4_t b, mve_pred16_t p)
{
return vrshlq_x_s32 (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */
/* { dg-final { scan-assembler "vrshlt.s32" } } */
int32x4_t
foo1 (int32x4_t a, int32x4_t b, mve_pred16_t p)
{
return vrshlq_x (a, b, p);
}
/* { dg-final { scan-assembler "vpst" } } */