blob: c0b3a5b274be6380f3714c04872367e1a30bb997 [file] [log] [blame]
#include <arm_neon.h>
/* { dg-do compile } */
/* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
void
f_vst3_lane_s32 (int32_t * p, int32x2x3_t v)
{
/* { dg-error "lane 2 out of range 0 - 1" "" { target *-*-* } 0 } */
vst3_lane_s32 (p, v, 2);
/* { dg-error "lane -1 out of range 0 - 1" "" { target *-*-* } 0 } */
vst3_lane_s32 (p, v, -1);
return;
}