blob: 48652af3cff69d29ab42a86f3a1c575ae3b2694b [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"
void
foo (int32_t * base, uint32x4_t offset, int32x4_t value, mve_pred16_t p)
{
vstrwq_scatter_offset_p_s32 (base, offset, value, p);
}
/* { dg-final { scan-assembler "vstrwt.32" } } */
void
foo1 (int32_t * base, uint32x4_t offset, int32x4_t value, mve_pred16_t p)
{
vstrwq_scatter_offset_p (base, offset, value, p);
}
/* { dg-final { scan-assembler "vstrwt.32" } } */