aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/aarch64/simd/vst3q_lane_u32_indices_1.c
blob: 34f3b379264954ac72b197249fd1bddf861c75ae (plain)
1
2
3
4
5
6
7
8
9
10
#include <arm_neon.h>


void
f_vst3q_lane_u32 (uint32_t * p, uint32x4x3_t v)
{
  vst3q_lane_u32 (p, v, 4); /* { dg-error "lane 4 out of range 0 - 3" "" { target *-*-* } 0 } */
  vst3q_lane_u32 (p, v, -1); /* { dg-error "lane -1 out of range 0 - 3" "" { target *-*-* } 0 } */
  return;
}