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