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