PR116019: Improve tail call error message
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / advsimd-intrinsics / vld3_lane_f64_indices_1.c
blob63d55516059f4437efc26f1d4d0d17b1c49c1e45
1 #include <arm_neon.h>
3 /* { dg-do compile } */
4 /* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
5 /* { dg-skip-if "" { arm*-*-* } } */
7 float64x1x3_t
8 f_vld3_lane_f64 (float64_t * p, float64x1x3_t v)
10 float64x1x3_t res;
11 /* { dg-error "lane 1 out of range 0 - 0" "" { target *-*-* } 0 } */
12 res = vld3_lane_f64 (p, v, 1);
13 /* { dg-error "lane -1 out of range 0 - 0" "" { target *-*-* } 0 } */
14 res = vld3_lane_f64 (p, v, -1);
15 return res;