RISC-V: Work around bare apostrophe in error string.
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / advsimd-intrinsics / vst4q_lane_f64_indices_1.c
blobe2b7fb85b5712d30924ab9583ec0cbc0ae53c58f
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_vst4q_lane_f64 (float64_t * p, float64x2x4_t v)
10 /* { dg-error "lane 2 out of range 0 - 1" "" { target *-*-* } 0 } */
11 vst4q_lane_f64 (p, v, 2);
12 /* { dg-error "lane -1 out of range 0 - 1" "" { target *-*-* } 0 } */
13 vst4q_lane_f64 (p, v, -1);
14 return;