Enable gcc.dg/vect/vect-early-break_21.c on x86_64
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / advsimd-intrinsics / vld3_lane_u16_indices_1.c
blob8be04edccf2dc994b6df15489c53a6d8962af534
1 #include <arm_neon.h>
3 /* { dg-do compile } */
4 /* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
6 uint16x4x3_t
7 f_vld3_lane_u16 (uint16_t * p, uint16x4x3_t v)
9 uint16x4x3_t res;
10 /* { dg-error "lane 4 out of range 0 - 3" "" { target *-*-* } 0 } */
11 res = vld3_lane_u16 (p, v, 4);
12 /* { dg-error "lane -1 out of range 0 - 3" "" { target *-*-* } 0 } */
13 res = vld3_lane_u16 (p, v, -1);
14 return res;