Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / advsimd-intrinsics / vld3_lane_u32_indices_1.c
blobbf890d3cba921c42281eff26a3df87f055a7680d
1 #include <arm_neon.h>
3 /* { dg-do compile } */
4 /* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
6 uint32x2x3_t
7 f_vld3_lane_u32 (uint32_t * p, uint32x2x3_t v)
9 uint32x2x3_t res;
10 /* { dg-error "lane 2 out of range 0 - 1" "" { target *-*-* } 0 } */
11 res = vld3_lane_u32 (p, v, 2);
12 /* { dg-error "lane -1 out of range 0 - 1" "" { target *-*-* } 0 } */
13 res = vld3_lane_u32 (p, v, -1);
14 return res;