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