Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / advsimd-intrinsics / vst2_lane_f64_indices_1.c
blob2eca26f9f14c7625443085e89f92f2e045516299
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_vst2_lane_f64 (float64_t * p, float64x1x2_t v)
10 /* { dg-error "lane 1 out of range 0 - 0" "" { target *-*-* } 0 } */
11 vst2_lane_f64 (p, v, 1);
12 /* { dg-error "lane -1 out of range 0 - 0" "" { target *-*-* } 0 } */
13 vst2_lane_f64 (p, v, -1);
14 return;