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