[AArch64]Fix ICE at -O0 on vld1_lane intrinsics
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / vld1_lane-o0.c
blob58e0c9d14a1a136fc62a0c678ffffc6f97043bed
1 /* PR/63950 Test bounds checking at -O0. */
3 /* { dg-options "-std=c99 -O0" } */
5 #include <arm_neon.h>
7 int
8 main (int argc, char **argv)
10 int16x4_t in = vcreate_s16 (0xdeadbeef00000000ULL);
11 int16_t src = 17;
12 int16x4_t out = vld1_lane_s16 (&src, in, 1);