blob: 82ae1e433c16d95b87417d7675feb5c98a3c73a4 [file] [log] [blame]
#include <arm_neon.h>
/* { dg-do compile } */
/* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
void
f_vst2q_lane_s16 (int16_t * p, int16x8x2_t v)
{
/* { dg-error "lane 8 out of range 0 - 7" "" { target *-*-* } 0 } */
vst2q_lane_s16 (p, v, 8);
/* { dg-error "lane -1 out of range 0 - 7" "" { target *-*-* } 0 } */
vst2q_lane_s16 (p, v, -1);
return;
}