blob: 7ebf858f8160f058e0bfe6cac15cd23e1722f614 [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 (int64_t * base, uint64x2_t offset, int64x2_t value, mve_pred16_t p)
{
vstrdq_scatter_offset_p_s64 (base, offset, value, p);
}
/* { dg-final { scan-assembler "vstrdt.64" } } */
void
foo1 (int64_t * base, uint64x2_t offset, int64x2_t value, mve_pred16_t p)
{
vstrdq_scatter_offset_p (base, offset, value, p);
}
/* { dg-final { scan-assembler "vstrdt.64" } } */