コード例 #1
0
ファイル: vld3_lane_u32_indices_1.c プロジェクト: 0day-ci/gcc
uint32x2x3_t
f_vld3_lane_u32 (uint32_t * p, uint32x2x3_t v)
{
  uint32x2x3_t res;
  /* { dg-error "lane 2 out of range 0 - 1" "" { target *-*-* } 0 } */
  res = vld3_lane_u32 (p, v, 2);
  /* { dg-error "lane -1 out of range 0 - 1" "" { target *-*-* } 0 } */
  res = vld3_lane_u32 (p, v, -1);
  return res;
}
コード例 #2
0
ファイル: vld3_laneu32.c プロジェクト: 5432935/crossbridge
void test_vld3_laneu32 (void)
{
  uint32x2x3_t out_uint32x2x3_t;
  uint32x2x3_t arg1_uint32x2x3_t;

  out_uint32x2x3_t = vld3_lane_u32 (0, arg1_uint32x2x3_t, 1);
}