1 /* PR/63950 Test bounds checking at -O0. */
2
3 /* { dg-options "-std=c99 -O0" } */
4
5 #include <arm_neon.h>
6
7 int
8 main (int argc, char **argv)
9 {
10 int16x4_t in = vcreate_s16 (0xdeadbeef00000000ULL);
11 int16_t src = 17;
12 int16x4_t out = vld1_lane_s16 (&src, in, 1);
13 }