blob: 78863b58086cc939ef679474a36d616a9d8c49b0 [file] [log] [blame]
#include <arm_neon.h>
/* { dg-do compile } */
/* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
/* { dg-skip-if "" { arm*-*-* } } */
void
f_vst2q_lane_u64 (uint64_t * p, uint64x2x2_t v)
{
/* { dg-error "lane 2 out of range 0 - 1" "" { target *-*-* } 0 } */
vst2q_lane_u64 (p, v, 2);
/* { dg-error "lane -1 out of range 0 - 1" "" { target *-*-* } 0 } */
vst2q_lane_u64 (p, v, -1);
return;
}