PR116019: Improve tail call error message
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / advsimd-intrinsics / vmulxq_laneq_f64_indices_1.c
blob0284193c42f1fb62f9a4028e8bf9f5967d8f6633
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_laneq_f64 (float64x2_t v1, float64x2_t v2)
10 float64x2_t res;
11 /* { dg-error "lane -1 out of range 0 - 1" "" {target *-*-*} 0 } */
12 res = vmulxq_laneq_f64 (v1, v2, -1);
13 /* { dg-error "lane 2 out of range 0 - 1" "" {target *-*-*} 0 } */
14 res = vmulxq_laneq_f64 (v1, v2, 2);
15 return res;