uint32x4x2_t
f_vld2q_lane_u32 (uint32_t * p, uint32x4x2_t v)
{
  uint32x4x2_t res;
  /* { dg-error "lane 4 out of range 0 - 3" "" { target *-*-* } 0 } */
  res = vld2q_lane_u32 (p, v, 4);
  /* { dg-error "lane -1 out of range 0 - 3" "" { target *-*-* } 0 } */
  res = vld2q_lane_u32 (p, v, -1);
  return res;
}
Exemple #2
0
void test_vld2Q_laneu32 (void)
{
  uint32x4x2_t out_uint32x4x2_t;
  uint32x4x2_t arg1_uint32x4x2_t;

  out_uint32x4x2_t = vld2q_lane_u32 (0, arg1_uint32x4x2_t, 1);
}