1 #include <arm_neon.h>
2 
3 /* { dg-do compile } */
4 /* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
5 /* { dg-skip-if "" { arm*-*-* } } */
6 
7 uint64x1x4_t
f_vld4_lane_u64(uint64_t * p,uint64x1x4_t v)8 f_vld4_lane_u64 (uint64_t * p, uint64x1x4_t v)
9 {
10   uint64x1x4_t res;
11   /* { dg-error "lane 1 out of range 0 - 0" "" { target *-*-* } 0 } */
12   res = vld4_lane_u64 (p, v, 1);
13   /* { dg-error "lane -1 out of range 0 - 0" "" { target *-*-* } 0 } */
14   res = vld4_lane_u64 (p, v, -1);
15   return res;
16 }
17