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