uint32x4x3_t
f_vld3q_lane_u32 (uint32_t * p, uint32x4x3_t v)
{
  uint32x4x3_t res;
  /* { dg-error "lane 4 out of range 0 - 3" "" { xfail arm*-*-* } 0 } */
  res = vld3q_lane_u32 (p, v, 4);
  /* { dg-error "lane -1 out of range 0 - 3" "" { xfail arm*-*-* } 0 } */
  res = vld3q_lane_u32 (p, v, -1);
  return res;
}
Example #2
0
void test_vld3Q_laneu32 (void)
{
  uint32x4x3_t out_uint32x4x3_t;
  uint32x4x3_t arg1_uint32x4x3_t;

  out_uint32x4x3_t = vld3q_lane_u32 (0, arg1_uint32x4x3_t, 1);
}