3 /* { dg-do compile } */
4 /* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
5 /* { dg-require-effective-target arm_neon_fp16_ok { target { arm*-*-* } } } */
8 f_vld2q_lane_f16 (float16_t
* p
, float16x8x2_t v
)
11 /* { dg-error "lane 8 out of range 0 - 7" "" { target *-*-* } 0 } */
12 res
= vld2q_lane_f16 (p
, v
, 8);
13 /* { dg-error "lane -1 out of range 0 - 7" "" { target *-*-* } 0 } */
14 res
= vld2q_lane_f16 (p
, v
, -1);