PR116019: Improve tail call error message
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / advsimd-intrinsics / vst4q_lane_u16_indices_1.c
blobd0063ea0a7b433bd2921499fd723a09daa1b7557
1 #include <arm_neon.h>
3 /* { dg-do compile } */
4 /* { dg-skip-if "" { *-*-* } { "-fno-fat-lto-objects" } } */
6 void
7 f_vst4q_lane_u16 (uint16_t * p, uint16x8x4_t v)
9 /* { dg-error "lane 8 out of range 0 - 7" "" { target *-*-* } 0 } */
10 vst4q_lane_u16 (p, v, 8);
11 /* { dg-error "lane -1 out of range 0 - 7" "" { target *-*-* } 0 } */
12 vst4q_lane_u16 (p, v, -1);
13 return;